~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to Mailman/database/roster.py

  • Committer: Barry Warsaw
  • Date: 2007-12-08 16:51:36 UTC
  • Revision ID: barry@python.org-20071208165136-gcm3v8d7o3jbb0tt
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.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
from Mailman.configuration import config
29
29
from Mailman.constants import SystemDefaultPreferences
30
 
from Mailman.database.model import Address, Member
 
30
from Mailman.database.address import Address
 
31
from Mailman.database.member import Member
31
32
from Mailman.interfaces import DeliveryMode, IRoster, MemberRole
32
33
 
33
34