From 0f36bdcb06670303c3e77efe1ee7ab8f48a84074 Mon Sep 17 00:00:00 2001 From: Gordon Shumway Date: Wed, 19 Feb 2020 15:14:39 -0500 Subject: [PATCH] Jeopardy: change report reply --- Jeopardy/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jeopardy/plugin.py b/Jeopardy/plugin.py index ad7e52f..cf957af 100644 --- a/Jeopardy/plugin.py +++ b/Jeopardy/plugin.py @@ -794,9 +794,9 @@ class Jeopardy(callbacks.Plugin): if self.games[channel].active: r = requests.post('{0}/api/invalid'.format(self.jserviceUrl), data = {'id':self.games[channel].id}) if r.status_code == 200: - self.games[channel].reply('Question successfully reported. (Answer: {0})'.format(self.games[channel].a[0])) + self.games[channel].reply('Question successfully reported.') else: - self.games[channel].reply('Error. Question not reported. (Answer: {0})'.format(self.games[channel].a[0])) + self.games[channel].reply('Error. Question not reported.') self.games[channel].end() report = wrap(report)