Merge lp:~fullermd/bzr/revno-error into lp:bzr

Proposed by Matthew Fuller
Status: Merged
Approved by: Vincent Ladeuil
Approved revision: no longer in the source branch.
Merged at revision: 6567
Proposed branch: lp:~fullermd/bzr/revno-error
Merge into: lp:bzr
Diff against target: 14 lines (+2/-2)
1 file modified
bzrlib/builtins.py (+2/-2)
To merge this branch: bzr merge lp:~fullermd/bzr/revno-error
Reviewer Review Type Date Requested Status
Jelmer Vernooij (community) Approve
Review via email: mp+126754@code.launchpad.net

Commit message

Fix typo in an error message from the 'revno' command.

Description of the change

Fix typo in an error message from the 'revno' command.

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve
Revision history for this message
Vincent Ladeuil (vila) wrote :

sent to pqm by email

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bzrlib/builtins.py'
2--- bzrlib/builtins.py 2012-09-14 17:22:35 +0000
3+++ bzrlib/builtins.py 2012-09-27 17:47:32 +0000
4@@ -685,8 +685,8 @@
5 if revision:
6 if len(revision) != 1:
7 raise errors.BzrCommandError(gettext(
8- "Tags can only be placed on a single revision, "
9- "not on a range"))
10+ "Revision numbers only make sense for single "
11+ "revisions, not ranges"))
12 revid = revision[0].as_revision_id(b)
13 else:
14 revid = b.last_revision()