~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Paul Hummer
  • Date: 2010-03-05 17:01:35 UTC
  • mto: This revision was merged to the branch mainline in revision 10432.
  • Revision ID: paul@canonical.com-20100305170135-je3avqwvu61lky40
Fixed docstring

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
 
275
275
    @classmethod
276
276
    def create(cls, branch):
277
 
        """See `IBranchUpgradeJobSource`."""
 
277
        """See `IBranchScanJobSource`."""
278
278
        branch_job = BranchJob(branch, BranchJobType.SCAN_BRANCH, {})
279
279
        return cls(branch_job)
280
280