/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/commit_signature_commands.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-14 14:57:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6143.
  • Revision ID: jriddell@canonical.com-20110914145754-yklo20ib7e5xlksl
use gettext() in more files

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
                if to_revid is None:
142
142
                    to_revno = branch.revno()
143
143
                if from_revno is None or to_revno is None:
144
 
                    raise errors.BzrCommandError('Cannot verify a range of '\
145
 
                                               'non-revision-history revisions')
 
144
                    raise errors.BzrCommandError(gettext(
 
145
                    'Cannot verify a range of non-revision-history revisions'))
146
146
                for revno in range(from_revno, to_revno + 1):
147
147
                    revisions.append(branch.get_rev_id(revno))
148
148
        else: