diff options
| author | bwarsaw | 2002-03-05 16:23:29 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-03-05 16:23:29 +0000 |
| commit | 70f2c6a1405dde43f409bebc19569c598444d1c8 (patch) | |
| tree | 97dbc3d6a984a5e9e8dbe68751bed0efedb3fab5 | |
| parent | 0a8bb51e0bd95ff2cd4e0b8c7d3dab77a7f5de7f (diff) | |
| download | mailman-70f2c6a1405dde43f409bebc19569c598444d1c8.tar.gz mailman-70f2c6a1405dde43f409bebc19569c598444d1c8.tar.zst mailman-70f2c6a1405dde43f409bebc19569c598444d1c8.zip | |
| -rw-r--r-- | Mailman/Cgi/private.py | 3 | ||||
| -rwxr-xr-x | bin/check_perms | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Cgi/private.py b/Mailman/Cgi/private.py index e881d638b..71c30d17c 100644 --- a/Mailman/Cgi/private.py +++ b/Mailman/Cgi/private.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc. +# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -64,6 +64,7 @@ def main(): return path = os.environ.get('PATH_INFO') + # BAW: This needs to be converted to the Site module abstraction true_filename = os.path.join( mm_cfg.PRIVATE_ARCHIVE_FILE_DIR, true_path(path)) diff --git a/bin/check_perms b/bin/check_perms index 00d4d82de..af5b622c3 100755 --- a/bin/check_perms +++ b/bin/check_perms @@ -276,6 +276,7 @@ def checkdata(): 'next-digest', 'next-digest-topics', 'request.db') if STATE.VERBOSE: print _('checking permissions on list data') + # BAW: This needs to be converted to the Site module abstraction for dir in os.listdir(mm_cfg.LIST_DATA_DIR): for file in checkfiles: path = os.path.join(mm_cfg.LIST_DATA_DIR, dir, file) |
