~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/mail/codeimport.py

  • Committer: Curtis Hovey
  • Date: 2011-08-12 14:39:51 UTC
  • mto: This revision was merged to the branch mainline in revision 13685.
  • Revision ID: curtis.hovey@canonical.com-20110812143951-74vfvrt37gtt4fz2
Sorted imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    get_contact_email_addresses,
16
16
    get_email_template,
17
17
    )
18
 
from lp.services.mail.sendmail import (
19
 
    format_address,
20
 
    simple_sendmail,
21
 
    )
22
18
from canonical.launchpad.webapp import canonical_url
23
19
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
24
20
from lp.code.enums import (
29
25
    RevisionControlSystems,
30
26
    )
31
27
from lp.registry.interfaces.person import IPerson
 
28
from lp.services.mail.sendmail import (
 
29
    format_address,
 
30
    simple_sendmail,
 
31
    )
32
32
 
33
33
 
34
34
def new_import(code_import, event):