~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Steve Kowalik
  • Date: 2011-09-13 05:23:16 UTC
  • mto: This revision was merged to the branch mainline in revision 13939.
  • Revision ID: stevenk@ubuntu.com-20110913052316-hl7fzgsklq9jakwq
Chip away at canonical.lazr a little more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import transaction
22
22
import xmlrpclib
23
23
 
 
24
from lazr.restful.utils import safe_hasattr
24
25
from sqlobject import (
25
26
    BoolCol,
26
27
    ForeignKey,
33
34
    Count,
34
35
    Sum,
35
36
    )
36
 
 
37
37
from twisted.internet import (
38
38
    defer,
39
39
    reactor as default_reactor,
40
40
    )
41
41
from twisted.web import xmlrpc
42
42
from twisted.web.client import downloadPage
43
 
 
44
43
from zope.component import getUtility
45
44
from zope.interface import implements
46
45
 
59
58
    MAIN_STORE,
60
59
    SLAVE_FLAVOR,
61
60
    )
62
 
from canonical.lazr.utils import safe_hasattr
63
61
from canonical.librarian.utils import copy_and_close
64
62
from lp.app.errors import NotFoundError
65
63
from lp.buildmaster.interfaces.builder import (