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
=== modified file 'bzrlib/builtins.py'
--- bzrlib/builtins.py 2012-09-14 17:22:35 +0000
+++ bzrlib/builtins.py 2012-09-27 17:47:32 +0000
@@ -685,8 +685,8 @@
685 if revision:685 if revision:
686 if len(revision) != 1:686 if len(revision) != 1:
687 raise errors.BzrCommandError(gettext(687 raise errors.BzrCommandError(gettext(
688 "Tags can only be placed on a single revision, "688 "Revision numbers only make sense for single "
689 "not on a range"))689 "revisions, not ranges"))
690 revid = revision[0].as_revision_id(b)690 revid = revision[0].as_revision_id(b)
691 else:691 else:
692 revid = b.last_revision()692 revid = b.last_revision()