~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Graham Binns
  • Date: 2011-09-07 15:59:13 UTC
  • mto: This revision was merged to the branch mainline in revision 13914.
  • Revision ID: graham@canonical.com-20110907155913-p97tx2e34ysbcgp3
Added an XXX.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2010 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009-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
# pylint: disable-msg=E0211,E0213
76
76
    CodeReviewVote,
77
77
    )
78
78
from lp.code.interfaces.branch import IBranch
79
 
from lp.code.interfaces.diff import (
80
 
    IPreviewDiff,
81
 
    IStaticDiff,
82
 
    )
 
79
from lp.code.interfaces.diff import IPreviewDiff
83
80
from lp.registry.interfaces.person import IPerson
84
81
from lp.services.fields import (
85
82
    PublicPersonChoice,
174
171
            description=_("The person that accepted (or rejected) the code "
175
172
                          "for merging.")))
176
173
 
177
 
    review_diff = Reference(
178
 
        IStaticDiff, title=_('The diff to be used for reviews.'),
179
 
        readonly=True)
180
 
 
181
174
    next_preview_diff_job = Attribute(
182
175
        'The next BranchMergeProposalJob that will update a preview diff.')
183
176