Fix incompatibility with Python 3.4
This commit is contained in:
parent
2be4e502cc
commit
f615117b96
@ -5,7 +5,8 @@ def main():
|
|||||||
pathl = []
|
pathl = []
|
||||||
for pathbit in paths:
|
for pathbit in paths:
|
||||||
pathl.append(pathbit)
|
pathl.append(pathbit)
|
||||||
path = p(*pathl,".fhtpyaccess")
|
pathle = pathl + [".fhtpyaccess"]
|
||||||
|
path = p(*pathle)
|
||||||
if not os.path.isfile(path): continue
|
if not os.path.isfile(path): continue
|
||||||
handlePYP(env,path)
|
handlePYP(env,path)
|
||||||
if env["htaccessPropagate"] == False:
|
if env["htaccessPropagate"] == False:
|
||||||
|
Loading…
Reference in New Issue
Block a user