~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/buildfarmbuildjob.py

Merge db-devel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2010 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2010-2011 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
__metaclass__ = type
18
18
class BuildFarmBuildJob(BuildFarmJobOld):
19
19
    """See `IBuildFaramBuildJob`."""
20
20
    implements(IBuildFarmBuildJob)
 
21
 
21
22
    def __init__(self, build):
22
23
        """Store the build for this package build farm job.
23
24