From fad3bd4adb649f453e48157ed8ecefd381ce8a33 Mon Sep 17 00:00:00 2001 From: alterNERDtive Date: Wed, 15 Jan 2020 09:09:15 +0100 Subject: [PATCH] redirected usage text to stderr --- explorationtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorationtools.py b/explorationtools.py index 780cc32..c8e6ce7 100755 --- a/explorationtools.py +++ b/explorationtools.py @@ -124,7 +124,7 @@ try: elif args.subCommand == "systemlist": out = getSystemList(args.partialsystem) else: - parser.print_usage() + parser.print_usage(sys.stderr) sys.exit(1) except ServerError as e: print(e)