Skip to content

Commit 8db71f4

Browse files
committed
Fixes CI/CD error
1 parent fd00902 commit 8db71f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

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

lib/request/comparison.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
132132
page = removeDynamicContent(page)
133133
if threadData.lastPageTemplate != kb.pageTemplate:
134134
threadData.lastPageTemplateCleaned = removeDynamicContent(kb.pageTemplate)
135-
# Same template-identity memoization for the structure-aware projections (§below): the
135+
# Same template-identity memoization for the structure-aware projections (see below): the
136136
# template is constant across an extraction, so it must not be re-parsed/re-tokenized on
137137
# every inference request - only seq2 (from the live page) is recomputed per response
138138
threadData.lastPageTemplateJsonMinimized = jsonMinimize(kb.pageTemplate)

0 commit comments

Comments
 (0)