Correct nick parsing
This commit is contained in:
parent
dec5dbbf3a
commit
0ecf99ab4b
1 changed files with 1 additions and 1 deletions
|
|
@ -124,8 +124,8 @@ class CmdNick(COMMAND_DEFAULT_CLASS):
|
||||||
"""
|
"""
|
||||||
Support escaping of = with \=
|
Support escaping of = with \=
|
||||||
"""
|
"""
|
||||||
args = self.args
|
|
||||||
super(CmdNick, self).parse()
|
super(CmdNick, self).parse()
|
||||||
|
args = (self.lhs or "") + " = %s" % self.rhs if self.rhs else ""
|
||||||
parts = re.split(r"(?<!\\)=", args, 1)
|
parts = re.split(r"(?<!\\)=", args, 1)
|
||||||
self.rhs = None
|
self.rhs = None
|
||||||
if len(parts) < 2:
|
if len(parts) < 2:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue