`pj` now normalize path.
This commit is contained in:
parent
944eedcf56
commit
f42999199a
|
@ -13,7 +13,9 @@ from collections import namedtuple, defaultdict
|
||||||
|
|
||||||
from kiwixbuild._global import neutralEnv, option
|
from kiwixbuild._global import neutralEnv, option
|
||||||
|
|
||||||
pj = os.path.join
|
|
||||||
|
def pj(*args):
|
||||||
|
return os.path.normpath(os.path.join(*args))
|
||||||
|
|
||||||
|
|
||||||
COLORS = {
|
COLORS = {
|
||||||
|
|
Loading…
Reference in New Issue