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 a3db3c0 commit 3759052Copy full SHA for 3759052
1 file changed
sqlmap.py
@@ -22,6 +22,8 @@
22
Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
"""
24
25
+import codecs
26
+import locale
27
import os
28
import sys
29
import time
@@ -30,6 +32,8 @@
30
32
31
33
warnings.filterwarnings(action="ignore", message=".*was already imported", category=UserWarning)
34
35
+sys.stdout = codecs.getwriter(locale.getpreferredencoding())(sys.stdout)
36
+
37
try:
38
import psyco
39
psyco.full()
0 commit comments