summaryrefslogtreecommitdiff
path: root/examples/table_creation.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-06-02 15:05:27 -0400
committerGitHub <noreply@github.com>2020-06-02 15:05:27 -0400
commitf626f8674c3bdf40c3c96f7009f01cf2d5315a7a (patch)
tree2b3285371fa2edebb10045f32bdf0c1e9b1b8202 /examples/table_creation.py
parent8d9405a1fcc2169aa039172a8e2891b839a59e6c (diff)
parent52e70d09ac2c365b77ac00a8689913251f713f67 (diff)
downloadcmd2-git-f626f8674c3bdf40c3c96f7009f01cf2d5315a7a.tar.gz
Merge pull request #941 from python-cmd2/hint_bug
Hint bug
Diffstat (limited to 'examples/table_creation.py')
-rwxr-xr-xexamples/table_creation.py2
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():