diff --git a/my_first_calculator.py b/my_first_calculator.py index ae8a1aa..47d4a89 100644 --- a/my_first_calculator.py +++ b/my_first_calculator.py @@ -13,7 +13,7 @@ def dont_crash(msg, sign=False): if good_name in ("+", "-", "/", "*"): return good_name else: - print("{0} not supported".fomrat(good_name)) + print("{0} not supported".format(good_name)) except KeyboardInterrupt: print("\nNo escape now!") # But still have to catch this one else: