aboutsummaryrefslogtreecommitdiff
path: root/check-git-repos.py
diff options
context:
space:
mode:
Diffstat (limited to 'check-git-repos.py')
-rwxr-xr-xcheck-git-repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-git-repos.py b/check-git-repos.py
index e535396..035a8fa 100755
--- a/check-git-repos.py
+++ b/check-git-repos.py
@@ -53,7 +53,7 @@ def get_git_refs(path):
def perms_check(file):
st_mode = os.stat(file).st_mode
mode = stat.S_IFREG | stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | \
- stat.S_IWGRP | stat.S_IROTH
+ stat.S_IROTH
if st_mode != mode:
log.warn("Permissions wrong for file %s, changing %s=>%s", file,
oct(st_mode), oct(mode))