diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-05-28 14:48:52 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-05-28 14:48:52 -0400 |
commit | 72b8a873d70f1c550b5e448d657b732f9a2d7cdb (patch) | |
tree | f91f63c7e1b97244aa715b10b61331814f78c66b /examples | |
parent | d4653e6fccf0bc15d04075110769c11befb22819 (diff) | |
download | cmd2-git-72b8a873d70f1c550b5e448d657b732f9a2d7cdb.tar.gz |
Updated argparse_completer to use TableCreator for the hint table
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/table_creation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/table_creation.py b/examples/table_creation.py index 85bfc3f0..6325b200 100755 --- a/examples/table_creation.py +++ b/examples/table_creation.py @@ -53,7 +53,7 @@ data_list.append(["John Jones", def ansi_print(text): """Wraps style_aware_write so style can be stripped if needed""" - ansi.style_aware_write(sys.stdout, text + '\n') + ansi.style_aware_write(sys.stdout, text + '\n\n') def main(): |