summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/dumpdb8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/dumpdb b/bin/dumpdb
index 4c469094e..577d94876 100644
--- a/bin/dumpdb
+++ b/bin/dumpdb
@@ -1,6 +1,6 @@
#! @PYTHON@
#
-# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc.
+# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -45,12 +45,14 @@ import getopt
import pprint
import cPickle
-from email.Generator import Generator
-
+# BAW: Import order dependency! paths must be imported before anything from
+# the email package.
import paths
from Mailman.Queue.Switchboard import DumperSwitchboard
from Mailman.i18n import _
+from email.Generator import Generator
+
PROGRAM = sys.argv[0]
COMMASPACE = ', '