Commit 9445d6e7 authored by Ken Manheimer's avatar Ken Manheimer

Spell out the value of the mode - i was depending on a value from an

incorrect cut-and-paste.
parent 54b2a831
......@@ -96,7 +96,7 @@ def main(home, user='', group=''):
print 'setting dir permissions'
def dir_chmod(mode, dir, files, user=user, group=group):
ch(dir, user=user, group=group, mode=mode)
os.path.walk(home, dir_chmod, mode)
os.path.walk(home, dir_chmod, 0775)
print '-'*78
print 'creating default database'
open(db_path,'wb').write(open(dd_path,'rb').read())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment