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 a1b83cd commit 0ec420cCopy full SHA for 0ec420c
2 files changed
lib/utils/restapi.py
@@ -27,8 +27,6 @@
27
errMsg += "http://bottlepy.org/ and install it"
28
raise SqlmapMissingDependence, errMsg
29
30
-# bottle in debug mode for now
31
-debug(True)
32
33
# local global variables
34
session_ids = []
@@ -63,7 +61,7 @@ def error404(error):
63
61
def error405(error):
64
62
return "Method not allowed"
65
66
-@error(500) # Not Found
+@error(500) # Internal Server Error
67
def error500(error):
68
return "Internal server error"
69
lib/utils/xmlrpc.py
@@ -66,7 +66,6 @@ def read_output(self):
return retval
def run(self):
- print "CALLING RUN"
70
if not self.is_busy():
71
init(self.options, True)
72
thread = threading.Thread(target=start)
0 commit comments