forked from organicmaps/organicmaps
[crawler] Handle correctly paths with symbols '(' and ')'.
This commit is contained in:
parent
c97750449b
commit
f8d90e92ce
1 changed files with 6 additions and 1 deletions
|
@ -7,6 +7,9 @@ import sys
|
|||
|
||||
myPath = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
def formatPath(s):
|
||||
return s.replace('(', '\\(').replace(')', '\\)')
|
||||
|
||||
for i, line in enumerate(sys.stdin):
|
||||
(url, title, fileBase) = json.loads(line)
|
||||
fileName = fileBase + '.article'
|
||||
|
@ -19,4 +22,6 @@ for i, line in enumerate(sys.stdin):
|
|||
'--remove-intertag-spaces --simple-bool-attr --remove-quotes '
|
||||
'--remove-js-protocol --type html '
|
||||
'-o {outFileName} {fileName}'
|
||||
.format(myPath = myPath, fileName = fileName, outFileName = outFileName))
|
||||
.format(myPath = myPath,
|
||||
fileName = formatPath(fileName),
|
||||
outFileName = formatPath(outFileName)))
|
||||
|
|
Loading…
Add table
Reference in a new issue