/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/workingtree.py

  • Committer: Daniel Watkins
  • Date: 2008-03-03 17:48:36 UTC
  • mto: (3144.6.3 bzr.ab.integration)
  • mto: This revision was merged to the branch mainline in revision 3265.
  • Revision ID: d.m.watkins@warwick.ac.uk-20080303174836-m8k7v7q55ftqwnzt
Modified uses of errors.UnknownFormatError.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2698
2698
        except errors.NoSuchFile:
2699
2699
            raise errors.NoWorkingTree(base=transport.base)
2700
2700
        except KeyError:
2701
 
            raise errors.UnknownFormatError(format=format_string)
 
2701
            raise errors.UnknownFormatError(format=format_string,
 
2702
                                            kind="working tree")
2702
2703
 
2703
2704
    def __eq__(self, other):
2704
2705
        return self.__class__ is other.__class__