Fix incompatibility with Python 3.4
This commit is contained in:
parent
2be4e502cc
commit
f615117b96
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user