diff --git a/contrib/helpers.py b/contrib/helpers.py index d2c9c5b..77532b1 100644 --- a/contrib/helpers.py +++ b/contrib/helpers.py @@ -33,9 +33,9 @@ def goTo(path): chdir(path) return True except FileNotFoundError: - print("Could not find the '{}' directory in '{}'...".format( + print(("Could not find the '{}' directory in '{}'...".format( path, getcwd()) - ) + )) return False @@ -215,7 +215,7 @@ class User(object): @staticmethod def request(msg, prompt='--> '): print(msg) - return input(prompt) + return eval(input(prompt)) @staticmethod def pause(msg=False):