~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/interfaces/bugbranch.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:
24
24
    TextLine,
25
25
    )
26
26
 
27
 
from lp import _
28
 
from lp.app.interfaces.launchpad import IHasDateCreated
 
27
from canonical.launchpad import _
 
28
from canonical.launchpad.interfaces.launchpad import (
 
29
    IHasBug,
 
30
    IHasDateCreated,
 
31
    )
29
32
from lp.bugs.interfaces.bugtask import IBugTask
30
 
from lp.bugs.interfaces.hasbug import IHasBug
31
33
from lp.code.interfaces.branch import IBranch
32
34
from lp.code.interfaces.branchtarget import IHasBranchTarget
33
35
from lp.registry.interfaces.person import IPerson
34
 
from lp.services.fields import BugField
 
36
from lp.services.fields import (
 
37
    BugField,
 
38
    )
35
39
 
36
40
 
37
41
class IBugBranch(IHasDateCreated, IHasBug, IHasBranchTarget):