Merge lp:~brian-murray/launchpad/interfaces-bugtask-typos into lp:launchpad

Proposed by Brian Murray
Status: Merged
Approved by: Graham Binns
Approved revision: no longer in the source branch.
Merged at revision: 10874
Proposed branch: lp:~brian-murray/launchpad/interfaces-bugtask-typos
Merge into: lp:launchpad
Diff against target: 21 lines (+2/-2)
1 file modified
lib/lp/bugs/interfaces/bugtask.py (+2/-2)
To merge this branch: bzr merge lp:~brian-murray/launchpad/interfaces-bugtask-typos
Reviewer Review Type Date Requested Status
Graham Binns (community) code Approve
Review via email: mp+24700@code.launchpad.net

Commit message

Fix two typos in bugs/interfaces/bugtask.py

Description of the change

I discovered a typo of Fix Released in bugs/interfaces/bugtask.py Additionally, there was an extra space in the description of is_complete that I fixed.

To post a comment you must log in.
Revision history for this message
Brian Murray (brian-murray) wrote :

I'd also like to try landing this myself.

Revision history for this message
Graham Binns (gmb) :
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/bugs/interfaces/bugtask.py'
2--- lib/lp/bugs/interfaces/bugtask.py 2010-04-19 14:47:49 +0000
3+++ lib/lp/bugs/interfaces/bugtask.py 2010-05-05 02:06:26 +0000
4@@ -491,7 +491,7 @@
5 readonly=True,
6 required=False))
7 date_fix_released = exported(
8- Datetime(title=_("Date Fix Relesaed"),
9+ Datetime(title=_("Date Fix Released"),
10 description=_("The date on which this task was marked "
11 "Fix Released."),
12 readonly=True,
13@@ -555,7 +555,7 @@
14 is_complete = exported(
15 Bool(description=_(
16 "True or False depending on whether or not there is more "
17- " work required on this bug task."),
18+ "work required on this bug task."),
19 readonly=True))
20
21 @operation_returns_collection_of(Interface) # Actually IBug.