diff options
| author | Barry Warsaw | 2016-12-30 16:43:52 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2016-12-30 16:43:52 -0500 |
| commit | f308782d733373246ba3b3bb42d1d6e68695f8f3 (patch) | |
| tree | a7752d358fb0f9d40a848a8f9e9e07ef09201330 /src/mailman/rules/dmarc.py | |
| parent | 71d01e786839f70a863ef2711fd2a173c0b5785d (diff) | |
| download | mailman-f308782d733373246ba3b3bb42d1d6e68695f8f3.tar.gz mailman-f308782d733373246ba3b3bb42d1d6e68695f8f3.tar.zst mailman-f308782d733373246ba3b3bb42d1d6e68695f8f3.zip | |
Diffstat (limited to 'src/mailman/rules/dmarc.py')
| -rw-r--r-- | src/mailman/rules/dmarc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/rules/dmarc.py b/src/mailman/rules/dmarc.py index 90b874e32..890fe9ff2 100644 --- a/src/mailman/rules/dmarc.py +++ b/src/mailman/rules/dmarc.py @@ -48,7 +48,7 @@ def _get_suffixes(url): try: d = request.urlopen(url) except error.URLError as e: - elog.error('Unable to retrieve data from %s: %s', url, e) + elog.error('Unable to retrieve data from %s: %s', url, e.reason) return for line in d.readlines(): line = str(line, encoding='utf-8') |
