diff options
| author | bwarsaw | 2001-10-01 16:35:30 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-10-01 16:35:30 +0000 |
| commit | 128a45e435cb00a19c81dedc408a18efd0ea448f (patch) | |
| tree | d0637ffaf36b53346cd189269305fa3c8a4d6fa6 | |
| parent | 6624fbde8bb5dadc953788d1c55281caf8af5182 (diff) | |
| download | mailman-128a45e435cb00a19c81dedc408a18efd0ea448f.tar.gz mailman-128a45e435cb00a19c81dedc408a18efd0ea448f.tar.zst mailman-128a45e435cb00a19c81dedc408a18efd0ea448f.zip | |
| -rw-r--r-- | Mailman/Handlers/FileRecips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/FileRecips.py b/Mailman/Handlers/FileRecips.py index 4d9d20931..c6cfb7228 100644 --- a/Mailman/Handlers/FileRecips.py +++ b/Mailman/Handlers/FileRecips.py @@ -31,7 +31,7 @@ def process(mlist, msg, msgdata): try: fp = open(filename) except IOError, e: - if e.errno <> e.ENOENT: + if e.errno <> errno.ENOENT: raise # If the file didn't exist, just set an empty recipients list msgdata['recips'] = [] |
