~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-15 17:18:48 UTC
  • mfrom: (3113.2.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071215171848-q9o5tmkf3mvvunp8
(vila) Fix 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)