diff options
author | makefu <makefu@pnp.retiolum> | 2015-10-09 10:37:05 +0200 |
---|---|---|
committer | makefu <makefu@pnp.retiolum> | 2015-10-09 10:37:05 +0200 |
commit | 0384131cdf9430f78440fab239d7f191fcae4055 (patch) | |
tree | 0b451802037a2ae6c83a5d7abb6ec2acae4b850f /Reaktor/reaktor/core.py | |
parent | 15201886b97ee607bb494d85eea8e3a7096c6a14 (diff) |
Reaktor: drop shlex for parsing args, every command has to do it by itself now
this breaks compatibility so be aware
Diffstat (limited to 'Reaktor/reaktor/core.py')
-rwxr-xr-x | Reaktor/reaktor/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Reaktor/reaktor/core.py b/Reaktor/reaktor/core.py index eb8d9824..18fb074e 100755 --- a/Reaktor/reaktor/core.py +++ b/Reaktor/reaktor/core.py @@ -107,7 +107,7 @@ class Reaktor(asybot): myargv = [exe] + command['argv'][1:] try: if match and match.groupdict().get('args', None): - myargv += shlex.split(match.groupdict()['args']) + myargv += [match.groupdict()['args']] except: log.info("cannot parse args!") |