diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-08-13 12:54:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 12:54:49 -0400 |
commit | b26974e977ec3b7406b285ce4567c68106ed4425 (patch) | |
tree | 8faed77f34a8c8f4be114b34b536e6c9ab8e6154 /CHANGELOG.md | |
parent | 133e71a5a3074fc21fa52532d00c4d2364964cd3 (diff) | |
parent | ac26caeccfd525c5ff81aa0ade0164c40faeef4c (diff) | |
download | cmd2-git-b26974e977ec3b7406b285ce4567c68106ed4425.tar.gz |
Merge pull request #975 from python-cmd2/help_format_fix
Fix tuple metavar crash in Cmd2HelpFormatter and ArgparseCompleter
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ff37f57b..7361e195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ * Renamed `install_command_set()` and `uninstall_command_set()` to `register_command_set()` and `unregister_command_set()` for better name consistency. * Bug Fixes + * Fixed help formatting bug in `Cmd2ArgumentParser` when `metavar` is a tuple + * Fixed tab completion bug when using `CompletionItem` on an argument whose `metavar` is a tuple * Added explicit testing against python 3.5.2 for Ubuntu 16.04, and 3.5.3 for Debian 9 * Added fallback definition of typing.Deque (taken from 3.5.4) * Removed explicit type hints that fail due to a bug in 3.5.2 favoring comment-based hints instead |