~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to Mailman/Handlers/HandlerAPI.py

  • Committer: bwarsaw
  • Date: 2000-03-03 04:57:44 UTC
  • Revision ID: vcs-imports@canonical.com-20000303045744-ezax5t8p4l0hpc05
DeliverToUser(): 'fastrack' => 'fasttrack'

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
                'CookHeaders',
67
67
                mm_cfg.DELIVERY_MODULE,
68
68
                ]
69
 
    msg.fastrack = 1
 
69
    msg.fasttrack = 1
70
70
    for modname in pipeline:
71
71
        mod = __import__('Mailman.Handlers.'+modname)
72
72
        func = getattr(getattr(getattr(mod, 'Handlers'), modname), 'process')