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

Skip to content

Commit 72e5a79

Browse files
committed
Fixes #2106
1 parent 63f4b34 commit 72e5a79

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.8.19"
22+
VERSION = "1.0.8.20"
2323
REVISION = getRevisionNumber()
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}

thirdparty/clientform/clientform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@ def _ParseFileEx(file, base_uri,
11421142
try:
11431143
form.fixup()
11441144
except AttributeError, ex:
1145-
if not any(_ in str(ex) for _ in ("item is disabled", "is readonly")):
1145+
if not any(_ in str(ex) for _ in ("is disabled", "is readonly")):
11461146
raise
11471147
return forms
11481148

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-
40f4a8db45e22c380fcbc9c93d1f4749 lib/core/settings.py
48+
6432d4a9a990e1ebc1d1adb15cfba8e9 lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
@@ -311,7 +311,7 @@ ee25f2a03587e2c283eab0b36c9e5783 thirdparty/chardet/sbcsgroupprober.py
311311
c9349824f2647962175d321cc0c52134 thirdparty/chardet/sjisprober.py
312312
bcae4c645a737d3f0e7c96a66528ca4a thirdparty/chardet/universaldetector.py
313313
6f8b3e25472c02fb45a75215a175991f thirdparty/chardet/utf8prober.py
314-
b678dcd25ecb1533ffe2493b6e711bb1 thirdparty/clientform/clientform.py
314+
658da0466b798cc70f48f35fe49b7813 thirdparty/clientform/clientform.py
315315
722281d87fb13ec22555480f8f4c715b thirdparty/clientform/__init__.py
316316
0b625ccefa6b066f79d3cbb3639267e6 thirdparty/colorama/ansi.py
317317
e52252bb81ce1a14b7245b53af33e75f thirdparty/colorama/ansitowin32.py

0 commit comments

Comments
 (0)