diff --git a/markup/utils.py b/markup/utils.py index 528de8e..698249e 100644 --- a/markup/utils.py +++ b/markup/utils.py @@ -79,12 +79,12 @@ def ensure_dir(dir): if not os.path.exists(dir): os.makedirs(dir) os.chmod(dir, 0o775) - shutil.chown(dir, group='procat') + shutil.chown(dir, group='procat_web') def set_file_perms(file): os.chmod(file, 0o664) - shutil.chown(file, group='procat') + shutil.chown(file, group='procat_web') def clean_path(path):