~vexo/bzr/bzr

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Patch Queue Manager
  • Date: 2012-09-28 07:22:23 UTC
  • mfrom: (6566.1.1 revno-error)
  • Revision ID: pqm@pqm.ubuntu.com-20120928072223-m8dp02j933yp9j60
(vila) Fix typo in an error message from the 'revno' command. (Matthew
 Fuller)

Show diffs side-by-side

added added

removed removed

Lines of Context:
685
685
            if revision:
686
686
                if len(revision) != 1:
687
687
                    raise errors.BzrCommandError(gettext(
688
 
                        "Tags can only be placed on a single revision, "
689
 
                        "not on a range"))
 
688
                        "Revision numbers only make sense for single "
 
689
                        "revisions, not ranges"))
690
690
                revid = revision[0].as_revision_id(b)
691
691
            else:
692
692
                revid = b.last_revision()