From f6fc5442274efd4411c4ff7c9196be23127e72a1 Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Thu, 30 Jan 2014 18:46:37 -0800 Subject: [PATCH] yahooanswers: flip answer / link order --- plugins/yahooanswers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())