From e585218ad4dd96e84eaf627e181b8e5119bc6c6f Mon Sep 17 00:00:00 2001 From: cktricky Date: Mon, 6 Nov 2017 22:04:44 -0500 Subject: [PATCH] did a little bit of testing and converting this step piece into an int. Obviously still a ways to go. --- weirdAAL.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/weirdAAL.py b/weirdAAL.py index ade141a..a328fd6 100755 --- a/weirdAAL.py +++ b/weirdAAL.py @@ -17,7 +17,14 @@ parser.add_argument("-v", "--verbosity", help="increase output verbosity", action="store_true") args = parser.parse_args() - +if (args.step == 1): + print("Beginning step 1") +elif (args.step == 2): + print("Beginning step 2") +elif (args.step == 3): + print("Beginning step 3") +else: + print("We need a valid step to continue...") if (args.verbosity): print("Verbosity is enabled")