summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/Cgi/private.py3
-rwxr-xr-xbin/check_perms1
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)