only strip whitespace from input
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Mon, 16 Jul 2012 19:23:36 +0000 (15:23 -0400)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Mon, 16 Jul 2012 19:23:36 +0000 (15:23 -0400)
config/sfa-config-tty

index 0e97d46..5ec73d8 100755 (executable)
@@ -335,7 +335,7 @@ def mainloop (cdef, cread, cwrite, default_config, site_config, consolidated_con
     global service
     while True:
         try:
-            answer = raw_input("Enter command (u for usual changes, w to save, ? for help) ").strip()
+            answer = raw_input("Enter command (u for usual changes, w to save, ? for help) ").strip(" ")
         except EOFError:
             answer =""
         except KeyboardInterrupt: