mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Now version check works against Python 2.5 too
This commit is contained in:
parent
f54082111d
commit
a639dbbeab
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ def main():
|
|||
except (SqlmapSilentQuitException, bdb.BdbQuit):
|
||||
pass
|
||||
|
||||
except SqlmapBaseException as e:
|
||||
except SqlmapBaseException, e:
|
||||
e = getUnicode(e)
|
||||
logger.critical(e)
|
||||
sys.exit(1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue