~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/buildmaster/model/buildfarmjob.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-05-23 18:43:31 UTC
  • mfrom: (13084.2.6 page-match-rewrite-url)
  • Revision ID: launchpad@pqm.canonical.com-20110523184331-dhd2c7cgfuu49epw
[r=sinzui][bug=784273] Adds facility to the PageMatch to handle bad
        URIs

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
from canonical.database.constants import UTC_NOW
46
46
from canonical.database.enumcol import DBEnum
 
47
from canonical.launchpad.interfaces.launchpad import ILaunchpadCelebrities
47
48
from canonical.launchpad.interfaces.lpstorm import (
48
49
    IMasterStore,
49
50
    IStore,
54
55
    MAIN_STORE,
55
56
    )
56
57
from lp.app.errors import NotFoundError
57
 
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
58
 
from lp.buildmaster.enums import (
59
 
    BuildFarmJobType,
60
 
    BuildStatus,
61
 
    )
 
58
from lp.buildmaster.enums import BuildStatus
 
59
from lp.buildmaster.enums import BuildFarmJobType
62
60
from lp.buildmaster.interfaces.buildfarmjob import (
63
61
    IBuildFarmJob,
64
62
    IBuildFarmJobOld,