summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-03 02:17:58 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-03 02:17:58 -0500
commit6f054f9ea943bd5a655d3e6e4d6be5063a8f1dd9 (patch)
tree28be3ef62b51ee1e60d52ecaf9ead29c78147fed
parent5871719bf179ea81d18fb0ac08900ca870c3e074 (diff)
downloadcmd2-git-6f054f9ea943bd5a655d3e6e4d6be5063a8f1dd9.tar.gz
Removed slightly inaccurate comment
-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 []