~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/buildmaster/interfaces/buildfarmbranchjob.py

[r=danilo][ui=none][bug=685624] Let
        TranslationTemplatesBuildJob.build through the security proxy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    'IBuildFarmBranchJob'
9
9
    ]
10
10
 
 
11
from zope.interface import Attribute
 
12
 
11
13
from lp.code.interfaces.branchjob import IBranchJob
12
14
 
13
15
 
18
20
    have a "build" attribute but do implement `IBranchJob`, so that the
19
21
    UI can render appropriate status information.
20
22
    """
 
23
 
 
24
    build = Attribute("The `IBuildFarmJob` associated with this job.")