From 6f93426d6660e0f687d8e391d131ed2fa75bcecb Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 21 Nov 2003 11:58:16 +0000 Subject: [PATCH] Minor style update. --- plugins/Google.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/Google.py b/plugins/Google.py index e985c9faa..fb104e2a9 100644 --- a/plugins/Google.py +++ b/plugins/Google.py @@ -311,12 +311,12 @@ class Google(callbacks.PrivmsgCommandAndRegexp, plugins.Configurable): fd = urllib2.urlopen(request) text = fd.read() fd.close() - elif '&output=gplain' not in match.group(0): - mThread = self._ggThread.search(text) - mGroup = self._ggGroup.search(text) - else: + elif '&output=gplain' in match.group(0): mThread = self._ggPlainThread.search(text) mGroup = self._ggPlainGroup.search(text) + else: + mThread = self._ggThread.search(text) + mGroup = self._ggGroup.search(text) if mThread and mGroup: irc.reply(msg, 'Google Groups: %s, %s' % (mGroup.group(1), mThread.group(1)), prefixName = False)