Merge pull request #197 from Danik2343/master

Fix for Python 3
This commit is contained in:
d0n0x
2023-05-06 16:34:51 +03:00
committed by GitHub
+1 -1
View File
@@ -51,7 +51,7 @@ class EULA:
notice += '|infect your machines with live and dangerous malwares! |\n'
notice += '|___________________________________________________________________________|\n'
print(red(notice))
eula_answer = raw_input(
eula_answer = input(
'Type YES in captial letters to accept this EULA.\n > ')
if eula_answer == 'YES':
new = open(globals.vars.eula_file, 'a')