mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-09-21 11:25:05 -04:00
Escape path in PATH
This commit is contained in:
parent
2ccea4c84b
commit
026b685782
@ -83,7 +83,7 @@ class PathArray(list):
|
||||
super().__init__(value.split(self.separator))
|
||||
|
||||
def __str__(self):
|
||||
return self.separator.join((str(v) for v in self))
|
||||
return self.separator.join((escape_path(str(v)) for v in self))
|
||||
|
||||
|
||||
def remove_duplicates(iterable, key_function=None):
|
||||
|
Loading…
x
Reference in New Issue
Block a user