diff options
| author | viega | 1998-06-03 15:36:13 +0000 |
|---|---|---|
| committer | viega | 1998-06-03 15:36:13 +0000 |
| commit | 2e07b6175996bb0507fb85e4235f4f003eef4f3c (patch) | |
| tree | 60b8fd1193207eb41f3d390fc051dfccfa46f66a /Mailman/SecurityManager.py | |
| parent | e49a520ad105350b89ec825adac0e0ddef97888d (diff) | |
| download | mailman-2e07b6175996bb0507fb85e4235f4f003eef4f3c.tar.gz mailman-2e07b6175996bb0507fb85e4235f4f003eef4f3c.tar.zst mailman-2e07b6175996bb0507fb85e4235f4f003eef4f3c.zip | |
Diffstat (limited to 'Mailman/SecurityManager.py')
| -rw-r--r-- | Mailman/SecurityManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/SecurityManager.py b/Mailman/SecurityManager.py index be7f75130..51cb6a309 100644 --- a/Mailman/SecurityManager.py +++ b/Mailman/SecurityManager.py @@ -35,7 +35,7 @@ class SecurityManager: def CheckSiteAdminPassword(self, str): try: - f = open(SITE_PW_FILE, "r+") + f = open(SITE_PW_FILE, "r") pw = f.read() f.close() return mm_crypt.crypt(str, pw) == pw |
