From 57a5f0c85cf4dd7111be21801aa07f54f2341833 Mon Sep 17 00:00:00 2001 From: Ali Parlakci Date: Wed, 11 Jul 2018 19:31:32 +0300 Subject: [PATCH] Print arguments before anything --- script.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script.py b/script.py index 8a9a09f..1f820d7 100644 --- a/script.py +++ b/script.py @@ -560,6 +560,8 @@ def main(): else: GLOBAL.directory = Path(input("download directory: ")) + print(" ".join(sys.argv)) + if len(sys.argv) == 1: PromptUser() else: @@ -567,7 +569,6 @@ def main(): GLOBAL.config = getConfig("config.json") - print(sys.argv) if GLOBAL.arguments.log is not None: logDir = Path(GLOBAL.arguments.log)