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.
1 parent 894b9f0 commit 8b0d31aCopy full SHA for 8b0d31a
1 file changed
lib/request/basic.py
@@ -81,6 +81,8 @@ def parseResponse(page, headers):
81
for match in reobj.finditer(page):
82
absFilePath = match.group("result").strip()
83
page = page.replace(absFilePath, "")
84
+ if re.search("\A[A-Za-z]:", absFilePath):
85
+ absFilePath = absFilePath.replace("/", "\\")
86
if absFilePath not in kb.absFilePaths:
87
dirname = directoryPath(absFilePath)
88
kb.absFilePaths.add(dirname)
0 commit comments