Merge pull request #969 from nyuszika7h/fix/google/calc/remove-debug

Google: calc: Remove leftover HTML dump debug code
This commit is contained in:
Valentin Lorentz 2014-12-22 17:09:34 +01:00
commit c58399730b

View File

@ -320,7 +320,6 @@ class Google(callbacks.PluginRegexp):
match = self._calcRe3.search(html) match = self._calcRe3.search(html)
if not match: if not match:
irc.reply("I could not find an output from Google Calc for: %s" % expr) irc.reply("I could not find an output from Google Calc for: %s" % expr)
self.log.info("HTML: {0}".format(html))
return return
else: else:
s = match.group(1) s = match.group(1)