diff options
| author | Barry Warsaw | 2007-12-08 11:51:36 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2007-12-08 11:51:36 -0500 |
| commit | 5495accf05d77e1c4ff2855f5e42c2e56f51e45d (patch) | |
| tree | e4d3ae8e89bf380137183fd045c41aae983f1e15 /Mailman/database/user.py | |
| parent | 8ccaa3f611fd822d916abf17ccf308d5ebbe9383 (diff) | |
| download | mailman-5495accf05d77e1c4ff2855f5e42c2e56f51e45d.tar.gz mailman-5495accf05d77e1c4ff2855f5e42c2e56f51e45d.tar.zst mailman-5495accf05d77e1c4ff2855f5e42c2e56f51e45d.zip | |
Reorganize the database subpackage, primarily by removing the 'model'
subdirectory and updating all relevant imports. Move of the circular
import problems have been eliminated in the process.
Diffstat (limited to '')
| -rw-r--r-- | Mailman/database/user.py (renamed from Mailman/database/model/user.py) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/database/model/user.py b/Mailman/database/user.py index 84b5a4595..3ca320f36 100644 --- a/Mailman/database/model/user.py +++ b/Mailman/database/user.py @@ -21,9 +21,9 @@ from zope.interface import implements from Mailman import Errors from Mailman.configuration import config -from Mailman.database import Model -from Mailman.database.model import Address -from Mailman.database.model import Preferences +from Mailman.database.model import Model +from Mailman.database.address import Address +from Mailman.database.preferences import Preferences from Mailman.interfaces import IUser |
