mirror of
https://github.com/bhattsameer/Bombers.git
synced 2023-08-10 21:12:53 +03:00
Merge pull request #25 from cclauss/patch-1
raw_input() was removed from Python on 1/1/2020
This commit is contained in:
commit
7d165bc939
@ -6,6 +6,11 @@ import platform
|
||||
import os
|
||||
import time
|
||||
|
||||
try:
|
||||
raw_input
|
||||
except NameError:
|
||||
raw_input = input
|
||||
|
||||
def banner():
|
||||
if platform.system().lower()=="windows":
|
||||
os.system("cls")
|
||||
|
Loading…
Reference in New Issue
Block a user