~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/model/bugbranch.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 22:01:40 UTC
  • mfrom: (14583.1.25 move-webservice)
  • Revision ID: launchpad@pqm.canonical.com-20111222220140-o53ycgaapjua1dde
[rs=sinzui][bug=907843] Move webservice to lp.services.webservice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
 
42
42
class BugBranch(SQLBase):
43
 
    """See canonical.launchpad.interfaces.IBugBranch."""
 
43
    """See `IBugBranch`."""
44
44
    implements(IBugBranch, IHasBranchTarget)
45
45
 
46
46
    datecreated = UtcDateTimeCol(notNull=True, default=UTC_NOW)