summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-22 10:00:03 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-22 10:00:03 +0100
commitbb31eae65a094c5fa8fc6e53d89404815216ccb8 (patch)
tree0de2714131b703788aeaf7cee94e98bee7fb77e7
parent2fe68a363d4ebcb01826cb21338d78b691bcf244 (diff)
downloadtrollius-git-bb31eae65a094c5fa8fc6e53d89404815216ccb8.tar.gz
release.py: Fix help
-rwxr-xr-xrelease.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release.py b/release.py
index 3d95a98..a5acbc8 100755
--- a/release.py
+++ b/release.py
@@ -396,7 +396,8 @@ class Release(object):
if command:
print("Invalid command: %s" % command)
else:
- parser.print_usage()
+ parser.print_help()
+ print("")
print("Available commands:")
print("- build: build asyncio in place, imply --running")