diff options
Diffstat (limited to 'tests/test_safedict.py')
-rw-r--r-- | tests/test_safedict.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_safedict.py b/tests/test_safedict.py index 27d6adb3..bf8dd921 100644 --- a/tests/test_safedict.py +++ b/tests/test_safedict.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2010 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 @@ -19,6 +19,10 @@ import email import unittest +try: + from Mailman import __init__ +except ImportError: + import paths from Mailman import SafeDict |