Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fbac5a commit caafa37Copy full SHA for caafa37
1 file changed
lib/core/option.py
@@ -971,7 +971,7 @@ def _setTamperingFunctions():
971
sys.path.insert(0, dirname)
972
973
try:
974
- module = __import__(filename[:-3])
+ module = __import__(filename[:-3].encode(sys.getfilesystemencoding()))
975
except (ImportError, SyntaxError), msg:
976
raise SqlmapSyntaxException("cannot import tamper script '%s' (%s)" % (filename[:-3], msg))
977
0 commit comments