Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f609158 + 3ebb3e6 commit b8f2c2bCopy full SHA for b8f2c2b
1 file changed
lib/core/common.py
@@ -2580,7 +2580,7 @@ def findDynamicContent(firstPage, secondPage):
2580
prefix = trimAlphaNum(prefix)
2581
suffix = trimAlphaNum(suffix)
2582
2583
- kb.dynamicMarkings.append((re.escape(prefix[-DYNAMICITY_MARK_LENGTH / 2:]) if prefix else None, re.escape(suffix[:DYNAMICITY_MARK_LENGTH / 2]) if suffix else None))
+ kb.dynamicMarkings.append((prefix[-DYNAMICITY_MARK_LENGTH / 2:] if prefix else None, suffix[:DYNAMICITY_MARK_LENGTH / 2] if suffix else None))
2584
2585
if len(kb.dynamicMarkings) > 0:
2586
infoMsg = "dynamic content marked for removal (%d region%s)" % (len(kb.dynamicMarkings), 's' if len(kb.dynamicMarkings) > 1 else '')
0 commit comments