Keep trailing backslash in arg parsing

This commit is contained in:
Joscha 2018-08-13 16:34:17 +00:00
parent e60d0ba81e
commit 85eb820fa6

View file

@ -162,6 +162,9 @@ class Bot(Inhabitant):
#if escape or quote:
#return None # syntax error
if escape:
arg += "\\"
if len(arg) > 0:
args.append(arg)