diff --git a/plugins/yahooanswers.py b/plugins/yahooanswers.py index 97353af..6e4064a 100644 --- a/plugins/yahooanswers.py +++ b/plugins/yahooanswers.py @@ -23,6 +23,6 @@ def answer(inp, api_key=None): chosen = choice(answered) answer, link = chosen["ChosenAnswer"], chosen["Link"] - response = "%s -- %s" % (link, answer) + response = "%s -- %s" % (answer, link) return " ".join(response.split())