aboutsummaryrefslogtreecommitdiffstats
path: root/reaktor/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'reaktor/core.py')
-rwxr-xr-xreaktor/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/reaktor/core.py b/reaktor/core.py
index eb8d982..18fb074 100755
--- a/reaktor/core.py
+++ b/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!")