~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/process-one-mail.py

  • Committer: William Grant
  • Date: 2012-01-01 03:13:08 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031308-ozhin5aaoxj5th20
scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
import sys
11
11
 
12
12
from lp.services.config import config
 
13
from lp.services.mail.helpers import save_mail_to_librarian
 
14
from lp.services.mail.incoming import handle_one_mail
 
15
from lp.services.mail.signedmessage import signed_message_from_string
13
16
from lp.services.scripts.base import LaunchpadScript
14
 
from lp.services.mail.incoming import (
15
 
    handle_one_mail)
16
 
from lp.services.mail.helpers import (
17
 
    save_mail_to_librarian,
18
 
    )
19
 
from lp.services.mail.signedmessage import signed_message_from_string
20
17
 
21
18
 
22
19
class ProcessMail(LaunchpadScript):