~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/externalbugtracker/trac.py

  • Committer: Steve Kowalik
  • Date: 2011-08-07 04:05:52 UTC
  • mto: This revision was merged to the branch mainline in revision 13626.
  • Revision ID: stevenk@ubuntu.com-20110807040552-mwnxo0flmhvl35e8
Correct the notification based on review comments, and remove request{,ed}
from the function names, switching to create{,d}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from zope.component import getUtility
20
20
from zope.interface import implements
21
21
 
 
22
from canonical.config import config
 
23
from lp.services.messages.interfaces.message import IMessageSet
 
24
from canonical.launchpad.webapp.url import urlappend
22
25
from lp.app.validators.email import valid_email
23
26
from lp.bugs.externalbugtracker.base import (
24
27
    BugNotFound,
41
44
    ISupportsCommentPushing,
42
45
    UNKNOWN_REMOTE_IMPORTANCE,
43
46
    )
44
 
from lp.services.config import config
45
47
from lp.services.database.isolation import ensure_no_transaction
46
 
from lp.services.messages.interfaces.message import IMessageSet
47
 
from lp.services.webapp.url import urlappend
48
48
 
49
49
# Symbolic constants used for the Trac LP plugin.
50
50
LP_PLUGIN_BUG_IDS_ONLY = 0