Fix incompatibility with Python 3.4

This commit is contained in:
Fierelier 2022-02-14 23:54:20 +01:00
parent 2be4e502cc
commit f615117b96
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@ def main():
pathl = []
for pathbit in paths:
pathl.append(pathbit)
path = p(*pathl,".fhtpyaccess")
pathle = pathl + [".fhtpyaccess"]
path = p(*pathle)
if not os.path.isfile(path): continue
handlePYP(env,path)
if env["htaccessPropagate"] == False: