Skip to content

Commit a639dbb

Browse files
committed
Now version check works against Python 2.5 too
1 parent f540821 commit a639dbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def main():
101101
except (SqlmapSilentQuitException, bdb.BdbQuit):
102102
pass
103103

104-
except SqlmapBaseException as e:
104+
except SqlmapBaseException, e:
105105
e = getUnicode(e)
106106
logger.critical(e)
107107
sys.exit(1)

0 commit comments

Comments
 (0)