From e437c7025f7a21cce4cd37d8c67612532fe2635e Mon Sep 17 00:00:00 2001 From: GeorgeChambi Date: Tue, 3 Dec 2019 11:08:30 +0000 Subject: [PATCH] fixed bug Removed comma from print statement causing and error. --- ciphers/caesar_cipher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciphers/caesar_cipher.py b/ciphers/caesar_cipher.py index 200f868051d4..4427a5234d70 100644 --- a/ciphers/caesar_cipher.py +++ b/ciphers/caesar_cipher.py @@ -39,7 +39,7 @@ def brute_force(input_string: str) -> None: def main(): while True: - print(f'{"-" * 10}\n Menu\n{"-", * 10}') + print(f'{"-" * 10}\n Menu\n{"-" * 10}') print(*["1.Encrpyt", "2.Decrypt", "3.BruteForce", "4.Quit"], sep="\n") choice = input("What would you like to do?: ") if choice not in ["1", "2", "3", "4"]: