From: Karl Hasselström <kha@xxxxxxxxxxx> It's just silly to say "Unknown command" when the user didn't give a command. Better to tell her to use a command. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> --- stgit/main.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stgit/main.py b/stgit/main.py index 66128a3..02d1eb1 100644 --- a/stgit/main.py +++ b/stgit/main.py @@ -198,7 +198,7 @@ def main(): prog = os.path.basename(sys.argv[0]) if len(sys.argv) < 2: - print >> sys.stderr, 'Unknown command' + print >> sys.stderr, 'usage: %s <command>' % prog print >> sys.stderr, \ ' Try "%s --help" for a list of supported commands' % prog sys.exit(1) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html