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

Skip to content

Commit 3b3774a

Browse files
committed
Fixes #3538
1 parent e7ffc8f commit 3b3774a

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.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.3.3.30"
22+
VERSION = "1.3.3.31"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

thirdparty/beautifulsoup/beautifulsoup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def __init__(self, parser, name, attrs=None, parent=None,
559559
self.escapeUnrecognizedEntities = parser.escapeUnrecognizedEntities
560560

561561
# Convert any HTML, XML, or numeric entities in the attribute values.
562-
convert = lambda k, val: (k,
562+
convert = lambda (k, val): (k,
563563
re.sub("&(#\d+|#x[0-9a-fA-F]+|\w+);",
564564
self._convertEntities,
565565
val))

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
5050
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5151
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53-
2d4b155258f2ae85c7f287c58742e1fb lib/core/settings.py
53+
858db5e54ce928b2ae4ed7fe55c25c12 lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
10d7e4f7ba2502cce5cf69223c52eddc lib/core/target.py
@@ -297,7 +297,7 @@ fc571c746951a5306591e04f70ddc46e tamper/versionedmorekeywords.py
297297
d39ce1f99e268dc7f92b602656f49461 tamper/xforwardedfor.py
298298
b1c02296b4e3b0ebaa58b9dcd914cbf4 thirdparty/ansistrm/ansistrm.py
299299
d41d8cd98f00b204e9800998ecf8427e thirdparty/ansistrm/__init__.py
300-
87e30550efec58d857da6c69930cd466 thirdparty/beautifulsoup/beautifulsoup.py
300+
3ebe11e5ad9bbe608b1caae540b6fe97 thirdparty/beautifulsoup/beautifulsoup.py
301301
cb2e1fe7c404dff41a2ae9132828f532 thirdparty/beautifulsoup/__init__.py
302302
ff54a1d98f0ab01ba7b58b068d2ebd26 thirdparty/bottle/bottle.py
303303
4528e6a7bb9341c36c425faf40ef32c3 thirdparty/bottle/__init__.py

0 commit comments

Comments
 (0)