mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
Define raw_input() for Python 3
__raw_input()__ is called on lines 276 and 283 but it was removed from Python 3 in favor of __input()__.
This commit is contained in:
parent
97ff5610c1
commit
5186a0e533
1 changed files with 5 additions and 0 deletions
|
|
@ -14,6 +14,11 @@ import whichcraft
|
|||
import lib.errors
|
||||
import bin.unzip_gecko
|
||||
|
||||
try:
|
||||
raw_input # Python 2
|
||||
except NameError:
|
||||
raw_input = input # Python 3
|
||||
|
||||
# clone link
|
||||
CLONE = "https://github.com/ekultek/zeus-scanner.git"
|
||||
# current version <major.minor.commit.patch ID>
|
||||
|
|
|
|||
Loading…
Reference in a new issue