This commit is contained in:
Kovid Goyal 2008-02-23 23:38:53 +00:00
parent def450837e
commit 6cf529b5da

View file

@ -65,7 +65,9 @@ def _check_symlinks_prescript():
if os.path.lexists(l):
os.remove(l)
print 'Creating link:', l, '->', s
omask = os.umask(022)
os.symlink(s, l)
os.umask(omask)
"""
dest_path = %(dest_path)s