diff options
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!") |