diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-30 19:58:46 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-30 19:58:46 -0400 |
commit | c6f5999809dfcde2d85b0f16131bf09316476f5d (patch) | |
tree | 7e8abacf9f6a5a81b529d3e9154c907c1a9dd035 | |
parent | 2f4198ef94262dc0c747c34541a72128164dc340 (diff) | |
download | cmd2-git-c6f5999809dfcde2d85b0f16131bf09316476f5d.tar.gz |
Fixed comment
-rwxr-xr-x | cmd2.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1502,7 +1502,7 @@ class Cmd(cmd.Cmd): if flag in flag_dict: match_against = flag_dict[flag] - # Perform tab completion using an Collection. These matches are already sorted. + # Perform tab completion using a Collection. These matches are already sorted. if isinstance(match_against, Collection): completions_matches = self.basic_complete(text, line, begidx, endidx, match_against) @@ -1546,7 +1546,7 @@ class Cmd(cmd.Cmd): else: match_against = all_else - # Perform tab completion using an Collection. These matches are already sorted. + # Perform tab completion using a Collection. These matches are already sorted. if isinstance(match_against, Collection): matches = self.basic_complete(text, line, begidx, endidx, match_against) |