Explorar el Código

Fixed bug in prompt when passing non-string value

Yentl Van Tendeloo hace 9 años
padre
commit
8946450f9a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      scripts/prompt.py

+ 1 - 1
scripts/prompt.py

@@ -125,7 +125,7 @@ while 1:
     else:
         # Just send a normal request
         if command.startswith("\\"):
-            command = command
+            command = command[1:]
         else:
             command = '"%s"' % command