~dushyant37/mailman/archiver-mm3

« back to all changes in this revision

Viewing changes to src/mailman/runners/rest.py

  • Committer: Barry Warsaw
  • Date: 2011-05-29 20:49:28 UTC
  • mfrom: (7013.1.1 refactor)
  • Revision ID: barry@list.org-20110529204928-1nb8wxzut5xuo71a
Rename 'queue' directory to 'runners' since not all the runner processes
actually run queues.  Move the Switchboard and Runner base classes into core.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import signal
32
32
import logging
33
33
 
34
 
from mailman.queue import Runner
 
34
from mailman.core.runner import Runner
35
35
from mailman.rest.wsgiapp import make_server
36
36
 
37
37