tps/test: when ask the user to say Y/N added to allow the lowercase letters also.

parent 49a3490f
......@@ -64,6 +64,7 @@ def main (default_directory='.'):
sys.stdin = sys.__stdin__;
while ((ask != "Y") and (ask != "N")) :
ask = raw_input("Are the LEDs blinking? [Y/N]")
ask = ask.upper()
sys.stdout = tmp_stdout;
sys.stdin = tmp_stdin;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment