/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Martin Pool
  • Date: 2005-09-12 09:11:51 UTC
  • Revision ID: mbp@sourcefrog.net-20050912091151-58daefd90703faf9
- Add Weave._weave_name for debugging purposes
  Holds weave filename if known

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()
 
103
    w = Weave(getattr(f, 'name', None))
104
104
 
105
105
    l = f.readline()
106
106
    if l != FORMAT_1: