release v0.7.1
authorOrakaro <nhatminh_179@hotmail.com>
Sun, 10 Aug 2014 07:00:05 +0000 (16:00 +0900)
committerOrakaro <nhatminh_179@hotmail.com>
Sun, 10 Aug 2014 07:00:05 +0000 (16:00 +0900)
docs/conf.py
rainbowstream/rainbow.py
setup.py

index 73a9a4d14697d9fc05f9dc75d336921dc132008b..5a2b801c0efc9db927b0a2a480136fbfeb145e22 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
-version = '0.7.0'
+version = '0.7.1'
 # The full version, including alpha/beta/rc tags.
-release = '0.7.0'
+release = '0.7.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index 3d154cabbf94feee8c50b12e8a73570211e95704..6464e593b8d5e413d12e38896aebe326991e62a8 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('%s %s' % (g['cmd'], g['stuff']))))
+        printNicely(str(eval(g['cmd'])))
     except Exception:
         pass
 
@@ -1653,11 +1653,13 @@ def listen():
             line = raw_input()
         # Save previous cmd in order to compare with readline buffer
         g['previous_cmd'] = line.strip()
+        # Get short cmd to filter
         try:
             cmd = line.split()[0]
         except:
             cmd = ''
-        g['cmd'] = cmd
+        # Save whold the entire cmd
+        g['cmd'] = line
         try:
             # Lock the semaphore
             c['lock'] = True
index da183cccb2a306c5749c4f54c42a13756bcfdbcf..e352cfdf8f2482a910f7575a7b99db6740e1208d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
-version = '0.7.0'
+version = '0.7.1'
 
 # Require
 install_requires = [