~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.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:
102
102
    from weave import Weave, WeaveFormatError
103
103
    w = Weave()
104
104
 
105
 
    wfe = WeaveFormatError
106
105
    l = f.readline()
107
106
    if l != FORMAT_1:
108
107
        raise WeaveFormatError('invalid weave file header: %r' % l)