diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-03 02:17:58 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-03 02:17:58 -0500 |
commit | 6f054f9ea943bd5a655d3e6e4d6be5063a8f1dd9 (patch) | |
tree | 28be3ef62b51ee1e60d52ecaf9ead29c78147fed | |
parent | 5871719bf179ea81d18fb0ac08900ca870c3e074 (diff) | |
download | cmd2-git-6f054f9ea943bd5a655d3e6e4d6be5063a8f1dd9.tar.gz |
Removed slightly inaccurate comment
-rwxr-xr-x | cmd2.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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 [] |