~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/commands/cli_withlist.py

  • Committer: Barry Warsaw
  • Date: 2015-01-05 01:20:33 UTC
  • mfrom: (7264.4.66 py3)
  • Revision ID: barry@list.org-20150105012033-zdrw9c2odhpf22fz
Merge the Python 3 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""bin/mailman withlist"""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'Shell',
25
22
    'Withlist',
30
27
import sys
31
28
 
32
29
from lazr.config import as_boolean
33
 
from zope.component import getUtility
34
 
from zope.interface import implementer
35
 
 
36
30
from mailman.config import config
37
31
from mailman.core.i18n import _
38
32
from mailman.interfaces.command import ICLISubCommand
39
33
from mailman.interfaces.listmanager import IListManager
40
34
from mailman.utilities.interact import DEFAULT_BANNER, interact
41
35
from mailman.utilities.modules import call_name
 
36
from zope.component import getUtility
 
37
from zope.interface import implementer
 
38
 
42
39
 
43
40
# Global holding onto the open mailing list.
44
41
m = None