From 738963ab05341f939c0e1c2afe7478e013e25561 Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 6 Sep 2011 15:46:43 +0200 Subject: //Reaktor/IRC: be famous only sometimes --- IRC/bot2.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'IRC') diff --git a/IRC/bot2.py b/IRC/bot2.py index 092d34b..0279c0f 100755 --- a/IRC/bot2.py +++ b/IRC/bot2.py @@ -35,7 +35,8 @@ class IRCBot(SimpleIRCClient): _, _handle, _command, _argument, _ = re.split( '^(\w+):\s*(\w+)(?:\s+(.*))?$', event.arguments()[0]) except ValueError, error: - PRIVMSG(self.target, 'I\'m so famous') + if re.search(_nickname, event.arguments()[0]): + PRIVMSG(self.target, 'I\'m so famous') return # ignore if _handle == _nickname or _handle == 'ALL': @@ -57,7 +58,7 @@ class IRCBot(SimpleIRCClient): p = popen([command], stdin=PIPE, stdout=PIPE, stderr=PIPE, env=env) except OSError, error: ME(self.target, 'is made of stupid') - print('OSError@%s: %s' % (argv, error)) + print('OSError@%s: %s' % (command, error)) return stdout, stderr = [ x[:len(x)-1] for x in -- cgit v1.2.3