chiark / gitweb /
correct syntax in define command
[irc.git] / commands.py
index eac4bc3ce0ee50ccdef0ab088675c27742764b26..637ec5fddffbbb14f4d1d9c0b5c2b302f2c48753 100644 (file)
@@ -251,7 +251,7 @@ def defineq(bot, cmd, nick, conn, public):
         else:
            # We assume google has truncated the definition for us so this
            # won't flood the channel with text...
-           defn = " ".join(match.group(1).split("\n"));
+           defn = " ".join(match.group(1).split("\n"))
            bot.automsg(public,nick,defn)
     except IOError: # if the connection times out. This blocks. :(
          bot.automsg(public,nick,"The web's broken. Waah!")