summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-11-08 13:36:34 +0100
committermakefu <github@syntax-fehler.de>2015-11-08 13:36:34 +0100
commitc6cb7e67121f7e08530d4ecbb1d70d6adc1bb18a (patch)
tree6a796397787e95c9e1efbe952956410b37b75ef3
parent9bf3a190d158bbda66a4c80e5ac3d818dd1217fa (diff)
parent0384131cdf9430f78440fab239d7f191fcae4055 (diff)
Merge branch 'master' of github.com:krebscode/painload
-rw-r--r--Reaktor/reaktor/__init__.py2
-rwxr-xr-xReaktor/reaktor/core.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Reaktor/reaktor/__init__.py b/Reaktor/reaktor/__init__.py
index dd694a06..10b8539a 100644
--- a/Reaktor/reaktor/__init__.py
+++ b/Reaktor/reaktor/__init__.py
@@ -1 +1 @@
-__version__="0.4.3"
+__version__="0.5.0"
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!")