1
0
Fork 0

Fix IRC message parameter escape

This commit is contained in:
nemunaire 2016-01-17 15:45:03 +01:00
parent d028afd09e
commit ff6460b92e
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ class IRC(Abstract):
for i in range(len(args) - 1, 0, -1):
arg = args[i]
if len(arg) > 2:
if arg[0:1] == '\\@':
if arg[0:2] == '\\@':
args[i] = arg[1:]
elif arg[0] == '@':
arsp = arg[1:].split("=", 1)