summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2013-02-14 15:14:41 -0700
committerkennyballou <kballou@onyx.boisestate.edu>2013-02-14 15:14:41 -0700
commit61394de034014ec1ec35091922fe54daf13b4811 (patch)
tree767f557bb6b58046e9ef9f354194f6e83513e536
parentaf38cbce8f3d1e27442f3ec47c5cc62d16c0f918 (diff)
downloadxnt-61394de034014ec1ec35091922fe54daf13b4811.tar.gz
xnt-61394de034014ec1ec35091922fe54daf13b4811.tar.xz
Replace newline character
-rw-r--r--xnt/commands/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xnt/commands/help.py b/xnt/commands/help.py
index 746ad78..35ec9bb 100644
--- a/xnt/commands/help.py
+++ b/xnt/commands/help.py
@@ -31,7 +31,7 @@ class HelpCommand(Command):
commands = get_summaries()
print(__version__)
print(__license__)
- print("\n")
+ print("Available Commands:")
for name, summary in commands:
print(name)
print("\t" + summary)