From a80ac32737c93101eab76388a69a65609d0ba70c Mon Sep 17 00:00:00 2001 From: Cole Deck Date: Mon, 15 Mar 2021 11:36:08 -0500 Subject: [PATCH] Verbose error message --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b34cfab..1fee3a9 100644 --- a/main.py +++ b/main.py @@ -32,7 +32,7 @@ def baseConverter(userInput, numberBase): try: decimalNum = int(userInput,numberBase) # First attempt to get the number in decimal. except: - print("bad base") + print("Number entered does not match the base!") return outputText = ""