diff options
| author | Barry Warsaw | 2008-09-27 09:26:23 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-09-27 09:26:23 -0400 |
| commit | 512145d93efc318adc0250dd53f4a53d8738f679 (patch) | |
| tree | b46813032dab87bda6ce8ffc1a867e6505050d93 /mailman/bin/export.py | |
| parent | 6f4351721559e8b7b577d3a01216fec88121ed11 (diff) | |
| parent | 4600557c49f2259925dca45b302b2a78629b0b38 (diff) | |
| download | mailman-512145d93efc318adc0250dd53f4a53d8738f679.tar.gz mailman-512145d93efc318adc0250dd53f4a53d8738f679.tar.zst mailman-512145d93efc318adc0250dd53f4a53d8738f679.zip | |
thread merge
Diffstat (limited to 'mailman/bin/export.py')
| -rw-r--r-- | mailman/bin/export.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mailman/bin/export.py b/mailman/bin/export.py index 1834205e7..e494d5a8d 100644 --- a/mailman/bin/export.py +++ b/mailman/bin/export.py @@ -29,7 +29,7 @@ import optparse from xml.sax.saxutils import escape from mailman import Defaults -from mailman import Errors +from mailman import errors from mailman import MemberAdaptor from mailman.MailList import MailList from mailman.configuration import config @@ -247,7 +247,7 @@ class XMLDumper(object): for listname in sorted(listnames): try: mlist = MailList(listname, lock=False) - except Errors.MMUnknownListError: + except errors.MMUnknownListError: print >> sys.stderr, _('No such list: $listname') continue self._dump_list(mlist) |
