Fix bad number assignment in aliases

This commit is contained in:
Thomas S Hatch 2012-06-01 08:39:38 -06:00
parent 0b2caab432
commit 93a2734ae8

View file

@ -60,7 +60,7 @@ def __write_aliases_file(lines):
os.chmod(out.name, stat.S_IMODE(st.st_mode))
os.chown(out.name, st.st_uid, st.st_gid)
else:
os.chmod(out.name, 0o644)
os.chmod(out.name, 0644)
os.chown(out.name, 0, 0)
for (line_alias, line_target, line_comment) in lines: