delete unused
authorOrakaro <nhatminh_179@hotmail.com>
Sun, 3 Aug 2014 14:08:04 +0000 (23:08 +0900)
committerOrakaro <nhatminh_179@hotmail.com>
Sun, 3 Aug 2014 14:08:04 +0000 (23:08 +0900)
rainbowstream/rainbow.py

index 60773477fb24f3d0ecb993af76a52fd5a3bd395d..0915e800e7655f2cf57d3c4f1b7e3a9c1e39ff03 100644 (file)
@@ -157,7 +157,6 @@ def init(args):
     files = os.listdir(os.path.dirname(__file__) + '/colorset')
     themes = [f.split('.')[0] for f in files if f.split('.')[-1] == 'json']
     g['themes'] = themes
-    g['prev_theme'] = c['THEME']
     # Semaphore init
     c['lock'] = False
     c['pause'] = False
@@ -1607,7 +1606,6 @@ def listen():
     read_history()
     reset()
     while True:
-        # Prompt redraw is needed when user is typing
         # raw_input
         if g['prefix']:
             line = raw_input(g['decorated_name'](c['PREFIX']))
@@ -1618,7 +1616,6 @@ def listen():
         except:
             cmd = ''
         g['cmd'] = cmd
-        # Prompt redraw not need when raw_input done
         try:
             # Lock the semaphore
             c['lock'] = True