don't drop user input after spaces when attempting eval
[rainbowstream.git] / rainbowstream / rainbow.py
index c66ae9af31b2e669dd081557f74fbebb52a8f91b..3d154cabbf94feee8c50b12e8a73570211e95704 100644 (file)
@@ -1520,7 +1520,7 @@ def reset():
         printNicely(magenta('Need tips ? Type "h" and hit Enter key!'))
     g['reset'] = False
     try:
-        printNicely(str(eval(g['cmd'])))
+        printNicely(str(eval('%s %s' % (g['cmd'], g['stuff']))))
     except Exception:
         pass