~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/interfaces/branchjob.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 20:03:56 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527200356-5436d46qjkflku1q
Updated imports of IHasDriver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
class IBranchJob(Interface):
54
54
    """A job related to a branch."""
55
55
 
56
 
    id = Int(title=_('Unique id of BranchScanJob.'))
57
 
 
58
56
    branch = Object(
59
57
        title=_('Branch to use for this job.'), required=False,
60
58
        schema=IBranch)
104
102
        :param branch: The database branch to upgrade.
105
103
        """
106
104
 
107
 
 
108
105
class IBranchUpgradeJob(IRunnableJob):
109
106
    """A job to upgrade branches with out-of-date formats."""
110
107