mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-13 17:06:53 +00:00
8 lines
156 B
Python
8 lines
156 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
if sys.version_info[:2] >= (2, 7):
|
|
from collections import OrderedDict
|
|
else:
|
|
from ordereddict import OrderedDict
|