Add case for empty input
This commit is contained in:
parent
23ae01e442
commit
e363bfd13c
@ -62,7 +62,9 @@ class HistoryConsole(code.InteractiveConsole):
|
|||||||
If the line begins with ">", we just strip it and evaluate as valid
|
If the line begins with ">", we just strip it and evaluate as valid
|
||||||
Python."""
|
Python."""
|
||||||
raw_input_line = input(prompt)
|
raw_input_line = input(prompt)
|
||||||
if len(raw_input_line) > 0 and raw_input_line[0] == '>':
|
if raw_input_line == "":
|
||||||
|
return raw_input_line
|
||||||
|
if raw_input_line[0] == '>':
|
||||||
return raw_input_line[1:]
|
return raw_input_line[1:]
|
||||||
else:
|
else:
|
||||||
cmds = parse_cmds(raw_input_line)
|
cmds = parse_cmds(raw_input_line)
|
||||||
|
Reference in New Issue
Block a user