Skip to content

Commit

Permalink
Merge pull request #158 from JohnMaguire2013/master
Browse files Browse the repository at this point in the history
fixed a small typo for util.log() on MODE change
  • Loading branch information
martynsmith committed Sep 6, 2013
2 parents 2131f05 + 2201f43 commit 9cfd78c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/irc.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function Client(server, nick, opt) {
break;
case "MODE":
if ( self.opt.debug )
util.log("MODE:" + message.args[0] + " sets mode: " + message.args[1]);
util.log("MODE: " + message.args[0] + " sets mode: " + message.args[1]);

var channel = self.chanData(message.args[0]);
if ( !channel ) break;
Expand Down

0 comments on commit 9cfd78c

Please sign in to comment.