Allow using other users' home directories as well

pull/2043/merge
Daniel Hokka Zakrisson 12 years ago
parent 89e73c123f
commit d632210941

@ -186,7 +186,7 @@ def path_dwim(basedir, given):
if given.startswith("/"):
return given
elif given.startswith("~/"):
elif given.startswith("~"):
return os.path.expanduser(given)
else:
return os.path.join(basedir, given)

Loading…
Cancel
Save