mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Patch for Python 2.6
This commit is contained in:
2
thirdparty/fcrypt/fcrypt.py
vendored
2
thirdparty/fcrypt/fcrypt.py
vendored
@@ -121,7 +121,7 @@ __all__ = ['crypt']
|
||||
|
||||
import string, struct, sys
|
||||
|
||||
if sys.version_info.major > 2:
|
||||
if sys.version_info >= (3, 0):
|
||||
xrange = range
|
||||
|
||||
_ITERATIONS = 16
|
||||
|
||||
Reference in New Issue
Block a user