normalize_namreply_params: Fix typo in function call

This commit is contained in:
Valentin Lorentz 2021-02-28 13:21:23 +01:00 committed by Valentin Lorentz
parent 04ae1dcba1
commit 1c1b8214a0

View File

@ -14,7 +14,7 @@ def normalize_namreply_params(params):
# end of the nick list.
if len(params) == 3:
assert params[1][0] in "=*@", params
params.insert(1), params[1][0]
params.insert(1, params[1][0])
params[2] = params[2][1:]
params[3] = params[3].rstrip()
return params