diff options
| author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-21 18:51:24 -0400 |
|---|---|---|
| committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-21 18:51:24 -0400 |
| commit | feb9dc3dd41bc0ccf3f742945d1e5eed199dffbc (patch) | |
| tree | ce7d5bcf30c7a57a58ba6a27442eb8264f060ec4 /cmd2.py | |
| parent | 02e24679fbbf8317b7aa735ece92548497c7c3db (diff) | |
| download | cmd2-git-feb9dc3dd41bc0ccf3f742945d1e5eed199dffbc.tar.gz | |
More unit test updates
Diffstat (limited to 'cmd2.py')
| -rwxr-xr-x | cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -584,7 +584,7 @@ def path_complete(text, line, begidx, endidx, dir_exe_only=False, dir_only=False # This is a directory, so don't add a space or quote set_allow_appended_space(False) set_allow_closing_quote(False) - return ["~" + os.path.sep] + return [completion_token + os.path.sep] elif completion_token.startswith('~'): # Tilde without separator between path is invalid |
