/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/errors.py

  • Committer: Vincent Ladeuil
  • Date: 2007-12-15 16:04:18 UTC
  • mto: (3113.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 3114.
  • Revision ID: v.ladeuil+lp@free.fr-20071215160418-hwl4pwr754df9701
Fix typo.

* errors.py:
(FileInWrongBranch): Typo 'in not in' -> 'is not in'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
653
653
 
654
654
class FileInWrongBranch(BzrError):
655
655
 
656
 
    _fmt = 'File "%(path)s" in not in branch %(branch_base)s.'
 
656
    _fmt = 'File "%(path)s" is not in branch %(branch_base)s.'
657
657
 
658
658
    def __init__(self, branch, path):
659
659
        BzrError.__init__(self)