diff options
author | Mark Sapiro <msapiro@value.net> | 2007-06-28 12:20:50 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2007-06-28 12:20:50 -0700 |
commit | 3ecc719177d42627bf4f809d0e8bd523b764927d (patch) | |
tree | 0da5fad0e5eeb7308489f3e60e495b40339a86e0 /bin/check_perms | |
parent | e4230d6e20eaac6b0abff314ee143a12ffbdabc9 (diff) | |
download | mailman2-3ecc719177d42627bf4f809d0e8bd523b764927d.tar.gz mailman2-3ecc719177d42627bf4f809d0e8bd523b764927d.tar.xz mailman2-3ecc719177d42627bf4f809d0e8bd523b764927d.zip |
Cleaned up a couple of style issues. No actual code changes.
Diffstat (limited to 'bin/check_perms')
-rwxr-xr-x | bin/check_perms | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bin/check_perms b/bin/check_perms index b9926016..7bba0f74 100755 --- a/bin/check_perms +++ b/bin/check_perms @@ -135,12 +135,13 @@ def checkwalk(arg, dirname, names): # 'group' permissions are checked here. Their 'other' permissions # aren't checked. private = mm_cfg.PRIVATE_ARCHIVE_FILE_DIR - if path == private or \ - (os.path.commonprefix((path, private)) == private - and os.path.split(path)[1] == 'database'): + if path == private or ( + os.path.commonprefix((path, private)) == private + and os.path.split(path)[1] == 'database'): + # then... targetperms = PRIVATEPERMS - elif os.path.commonprefix((path, mm_cfg.QUEUE_DIR)) \ - == mm_cfg.QUEUE_DIR: + elif (os.path.commonprefix((path, mm_cfg.QUEUE_DIR)) + == mm_cfg.QUEUE_DIR): targetperms = QFILEPERMS else: targetperms = DIRPERMS |