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

Skip to content

Commit 9105f25

Browse files
committed
Fixes #2060 (ParseError has been added in Python 2.7)
1 parent 7cca56e commit 9105f25

3 files changed

Lines changed: 4 additions & 4 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.38"
22+
VERSION = "1.0.7.39"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/techniques/union/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def _(regex):
132132
row.append(child.attrib.get(column, NULL))
133133
retVal += "%s%s%s" % (kb.chars.start, kb.chars.delimiter.join(row), kb.chars.stop)
134134

135-
except xml.etree.ElementTree.ParseError:
135+
except:
136136
pass
137137
else:
138138
retVal = getUnicode(retVal)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
97d3d003cad815f9119e4757abd3a70e lib/core/settings.py
48+
b10a550bac6290cc73312c413c39506a lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
@@ -99,7 +99,7 @@ cc9c82cfffd8ee9b25ba3af6284f057e lib/techniques/error/__init__.py
9999
cc9c82cfffd8ee9b25ba3af6284f057e lib/techniques/__init__.py
100100
cc9c82cfffd8ee9b25ba3af6284f057e lib/techniques/union/__init__.py
101101
f5d6884cdeed28281187c111d3e49e3b lib/techniques/union/test.py
102-
395d966e394a11e45be50dfa8f01961b lib/techniques/union/use.py
102+
12ce1bb7ee5f1f23f58be12fe9fa8472 lib/techniques/union/use.py
103103
2dfc03a7322c46deb2e5353a7fd4be5e lib/utils/api.py
104104
8cdc8c1e663c3b92a756fb7b02cc3c02 lib/utils/crawler.py
105105
393f8fd1684308213e1d2e6a9d4258c2 lib/utils/deps.py

0 commit comments

Comments
 (0)