~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/interfaces/binarypackagebuild.py

  • Committer: Curtis Hovey
  • Date: 2011-12-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
# pylint: disable-msg=E0211,E0213
42
42
    TextLine,
43
43
    )
44
44
 
45
 
from lp import _
 
45
from canonical.launchpad import _
46
46
from lp.buildmaster.enums import BuildStatus
47
47
from lp.buildmaster.interfaces.buildfarmjob import ISpecificBuildFarmJobSource
48
48
from lp.buildmaster.interfaces.packagebuild import IPackageBuild
426
426
        asserted to not be None/empty.
427
427
        """
428
428
 
429
 
    def preloadBuildsData(builds):
430
 
        """Prefetch the data related to the builds.
431
 
 
432
 
        """
433
 
 
434
429
 
435
430
class IBuildRescoreForm(Interface):
436
431
    """Form for rescoring a build."""