Browse Source

Make Login/Register option safe

Tankernn 7 years ago
parent
commit
0f953aa62c
1 changed files with 5 additions and 1 deletions
  1. 5 1
      cbc/client.py

+ 5 - 1
cbc/client.py

@@ -210,7 +210,11 @@ def connect():
         print("1. Login")
         print("2. Register")
         print("> ", end="", flush=True)
-        option = int(input())
+        try:
+            option = int(input())
+        except ValueError:
+            print("Please enter an integer value.")
+            continue
 
     print("Username: ", end="", flush=True)
     username = input()