From 4d127a14ca46e232b1d4151d3d0c5a7a826ea3ad Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 22 Feb 2016 21:53:07 +0000 Subject: [PATCH] Typofix. --- roles/people/files/make-people-page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/people/files/make-people-page.py b/roles/people/files/make-people-page.py index 6b8003efeb..dcfe66f87b 100644 --- a/roles/people/files/make-people-page.py +++ b/roles/people/files/make-people-page.py @@ -184,6 +184,6 @@ with open(out_file, 'w') as handle: out_file_uid = os.stat(out_file).st_uid # give write permissions to group -os.chmod(out_file, stat.IWGRP) +os.chmod(out_file, stat.S_IWGRP) # chown out file to group os.chown(out_file, out_file_uid, out_file_grp)