~barry/mailman/work1

« back to all changes in this revision

Viewing changes to src/mailman/core/pipelines.py

  • Committer: Barry Warsaw
  • Date: 2013-03-11 19:24:48 UTC
  • mfrom: (7178.2.26 3.0)
  • Revision ID: barry@list.org-20130311192448-gb1h8ca77weapdkx
trunk merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008-2012 by the Free Software Foundation, Inc.
 
1
# Copyright (C) 2008-2013 by the Free Software Foundation, Inc.
2
2
#
3
3
# This file is part of GNU Mailman.
4
4
#
36
36
from zope.interface.verify import verifyObject
37
37
 
38
38
from mailman.app.bounces import bounce_message
39
 
from mailman.app.finder import find_components
40
39
from mailman.config import config
41
40
from mailman.core import errors
42
41
from mailman.core.i18n import _
43
42
from mailman.interfaces.handler import IHandler
44
43
from mailman.interfaces.pipeline import IPipeline
 
44
from mailman.utilities.modules import find_components
 
45
 
45
46
 
46
47
dlog = logging.getLogger('mailman.debug')
47
48
vlog = logging.getLogger('mailman.vette')