From bf64421cfc22a3bc24e1f3fbdd82fecdb7fcad40 Mon Sep 17 00:00:00 2001 From: Manuelraa Date: Sun, 10 Nov 2019 14:31:50 +0100 Subject: [PATCH] This pull request was supposet to have a bug. But someone doesn't agree Co-Authored-By: Caelean Barnes <5150563+caelean@users.noreply.github.com> --- my_first_calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: