summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcmd2.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd2.py b/cmd2.py
index f91654ea..0b01c545 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -189,7 +189,6 @@ def flag_based_complete(text, line, begidx, endidx, flag_dict, default_completer
# Invalid syntax for shlex (Probably due to missing closing quote)
return []
- # Empty command line
if len(tokens) == 0:
return []
@@ -308,7 +307,6 @@ def path_complete(text, line, begidx, endidx, dir_exe_only=False, dir_only=False
# Invalid syntax for shlex (Probably due to missing closing quote)
return []
- # Empty command line
if len(tokens) == 0:
return []
@@ -2101,7 +2099,6 @@ class Cmd(cmd.Cmd):
# Invalid syntax for shlex (Probably due to missing closing quote)
return []
- # Empty command line
if len(tokens) == 0:
return []