- Timestamp:
- 10/21/07 22:39:52 (15 months ago)
- Files:
-
- 1 modified
-
tools/nsa/nsa.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tools/nsa/nsa.py
r668 r684 219 219 def say_it(self, text): 220 220 lines = text.split("\n") 221 for line in lines: 222 self.connection.privmsg(self.channel, line) 221 if len(lines) > 1: 222 for line in lines: 223 self.connection.privmsg(self.channel, line) 224 else: 225 self.connection.privmsg(self.channel, text) 223 226 224 227 def start(self):
