Fix pathJoin function error joining ("/directory,"/")

develop
Mike Hiretsky 14 years ago
parent 22eba09cdd
commit 507cda8d59

@ -527,9 +527,10 @@ def pathJoin(*paths):
if len(paths)==1:
return paths[0]
return os.path.join(paths[0],
reduce(os.path.join,
map(lambda x: x.startswith("/") and x[1:] or x,
paths[1:]),''))
reduce(os.path.join,
filter(lambda x:x and x != "/",
map(lambda x: x.startswith("/") and x[1:] or x,
paths[1:])),''))
def getUserPassword(flag="dialog", pwDialog=False):

Loading…
Cancel
Save