Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 63b645c

Browse files
committed
Removing a debugging leftover
1 parent 7ad49f4 commit 63b645c

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.7.7"
22+
VERSION = "1.0.7.8"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/parse/html.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ def startElement(self, name, attrs):
4242

4343
elif name == "error":
4444
regexp = attrs.get("regexp")
45-
if "SQL" in regexp:
46-
print regexp
4745
if regexp not in kb.cache.regex:
4846
keywords = re.findall("\w+", re.sub(r"\\.", " ", regexp))
4947
keywords = sorted(keywords, key=len)

0 commit comments

Comments
 (0)