Merge lp:~cjohnston/launchpad/1325127 into lp:launchpad

Proposed by Chris Johnston
Status: Merged
Approved by: William Grant
Approved revision: no longer in the source branch.
Merged at revision: 17033
Proposed branch: lp:~cjohnston/launchpad/1325127
Merge into: lp:launchpad
Diff against target: 25 lines (+1/-7)
1 file modified
lib/lp/code/browser/codereviewcomment.py (+1/-7)
To merge this branch: bzr merge lp:~cjohnston/launchpad/1325127
Reviewer Review Type Date Requested Status
William Grant code Approve
Review via email: mp+222085@code.launchpad.net

Commit message

Remove 'Publish draft inline comments' from +reply page

To post a comment you must log in.
Revision history for this message
William Grant (wgrant) :
review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/code/browser/codereviewcomment.py'
2--- lib/lp/code/browser/codereviewcomment.py 2014-05-21 01:16:13 +0000
3+++ lib/lp/code/browser/codereviewcomment.py 2014-06-04 18:19:22 +0000
4@@ -23,10 +23,7 @@
5 implements,
6 Interface,
7 )
8-from zope.schema import (
9- Bool,
10- Text,
11- )
12+from zope.schema import Text
13
14 from lp import _
15 from lp.app.browser.launchpadform import (
16@@ -231,9 +228,6 @@
17
18 comment = Text(title=_('Comment'), required=False)
19
20- publish_inline_comments = Bool(
21- title=_("Publish draft inline comments"), required=False)
22-
23
24 class CodeReviewCommentAddView(LaunchpadFormView):
25 """View for adding a CodeReviewComment."""