Skip to content

Commit

Permalink
missing colon in irc.py, fixes #191
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardslabs committed Aug 31, 2015
1 parent 817967f commit 5570c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudbot/clients/irc.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def close(self):
self._connected = False

def message(self, target, *messages, sanatize=True):
for text in messages
for text in messages:
if sanatize == True:
text = "".join(text.splitlines())
self.cmd("PRIVMSG", target, text)
Expand Down

0 comments on commit 5570c58

Please sign in to comment.