~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-09-04 03:32:17 UTC
  • mfrom: (974.1.52)
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: aaron.bentley@utoronto.ca-20050904033217-821a797652305c14
Disabled urlgrabber

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)