~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Andrew Bennetts
  • Date: 2010-10-11 05:06:26 UTC
  • mto: (5050.45.2 2.2)
  • mto: This revision was merged to the branch mainline in revision 5524.
  • Revision ID: andrew.bennetts@canonical.com-20101011050626-kql01ndwvploy97a
Suppress unexpected errors during NotBranchError's call to open_repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
 
119
119
    from weave import WeaveFormatError
120
120
 
121
 
    lines = iter(f.readlines())
 
121
    try:
 
122
        lines = iter(f.readlines())
 
123
    finally:
 
124
        f.close()
122
125
 
123
126
    try:
124
127
        l = lines.next()