~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Aaron Bentley
  • Date: 2005-09-14 21:53:30 UTC
  • mto: (1185.1.29)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: abentley@panoramicfeedback.com-20050914215330-4c93c44266d3169d
Started work on handling missing_for_merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
 
101
101
def read_weave_v5(f):
102
102
    from weave import Weave, WeaveFormatError
103
 
    w = Weave(getattr(f, 'name', None))
 
103
    w = Weave()
104
104
 
105
105
    l = f.readline()
106
106
    if l != FORMAT_1: