mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
Merge pull request #3 from cclauss/patch-1
Define raw_input() for Python 3
This commit is contained in:
commit
47e4b07584
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