Merge branch 'develop' into refresh
This commit is contained in:
commit
bdcd4c9ae5
1 changed files with 2 additions and 2 deletions
|
@ -272,8 +272,8 @@ class IRC(object):
|
|||
|
||||
def cmd(self, command, params=None):
|
||||
if params:
|
||||
params[-1] = ':' + params[-1]
|
||||
self.send(command + ' ' + ' '.join(map(censor, params)))
|
||||
params[-1] = u':' + params[-1]
|
||||
self.send(u"{} {}".format(command, ' '.join(params)))
|
||||
else:
|
||||
self.send(command)
|
||||
|
||||
|
|
Reference in a new issue