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 = ""