~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-08-24 04:40:43 UTC
  • Revision ID: mbp@sourcefrog.net-20050824044043-ada4ec960f151c0c
- some pychecker cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
811
811
        if stop_revision is None:
812
812
            stop_revision = other_len
813
813
        elif stop_revision > other_len:
814
 
            raise NoSuchRevision(self, stop_revision)
 
814
            raise bzrlib.errors.NoSuchRevision(self, stop_revision)
815
815
        
816
816
        return other_history[self_len:stop_revision]
817
817