diff options
| author | Barry Warsaw | 2008-03-27 05:14:14 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-03-27 05:14:14 -0400 |
| commit | 17f286de64cb3373d68c4fefba6d9369b4e3f960 (patch) | |
| tree | 5078531044f0574dfa340a389bd6d0bb9eea717f /mailman/pipeline/file_recipients.py | |
| parent | de9deb660c5d48a083f0c56916cca6aa0cb010b3 (diff) | |
| download | mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.tar.gz mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.tar.zst mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.zip | |
Diffstat (limited to 'mailman/pipeline/file_recipients.py')
| -rw-r--r-- | mailman/pipeline/file_recipients.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailman/pipeline/file_recipients.py b/mailman/pipeline/file_recipients.py index 8d97500fe..44ced925d 100644 --- a/mailman/pipeline/file_recipients.py +++ b/mailman/pipeline/file_recipients.py @@ -46,7 +46,7 @@ class FileRecipients: """See `IHandler`.""" if 'recips' in msgdata: return - filename = os.path.join(mlist.full_path, 'members.txt') + filename = os.path.join(mlist.data_path, 'members.txt') try: with open(filename) as fp: addrs = set(line.strip() for line in fp) |
