From 1616c90ce685cc30edc993c0c6678f9892f1be23 Mon Sep 17 00:00:00 2001 From: piyx Date: Mon, 19 Oct 2020 09:38:51 +0530 Subject: [PATCH] fixed print statement --- organize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/organize.py b/organize.py index 41db5f2..83ee753 100644 --- a/organize.py +++ b/organize.py @@ -49,5 +49,5 @@ if __name__ == "__main__": location = sys.argv[1] organize_files(location) except Exception as e: - print(f"error {e}") + print(f"Error: {e}") print("USAGE: python organize.py ")