comparison irclib.py @ 149:332bb2e8e71e

Revert "strip events' properties" This reverts commit 34ffdd4ace666221dcee163b088d778ed01e8f39.
author Charly COSTE <changaco@changaco.net>
date Sun, 17 Jan 2010 19:40:27 +0100
parents 484d8780bd34
children 63db565438bd
comparison
equal deleted inserted replaced
148:484d8780bd34 149:332bb2e8e71e
1152 1152
1153 target -- The target of the event (a nick or a channel). 1153 target -- The target of the event (a nick or a channel).
1154 1154
1155 arguments -- Any event specific arguments. 1155 arguments -- Any event specific arguments.
1156 """ 1156 """
1157 self._eventtype = eventtype.strip() 1157 self._eventtype = eventtype
1158 self._source = source.strip() 1158 self._source = source
1159 self._target = target.strip() 1159 self._target = target
1160 if arguments: 1160 if arguments:
1161 self._arguments = arguments 1161 self._arguments = arguments
1162 else: 1162 else:
1163 self._arguments = [] 1163 self._arguments = []
1164 1164