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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-27 14:38:38 UTC
  • mfrom: (3009.2.29 no-inventory)
  • Revision ID: pqm@pqm.ubuntu.com-20071127143838-lkx79x6q91uptc1o
Avoid using Tree.inventory (even indirectly) from diff command

Show diffs side-by-side

added added

removed removed

Lines of Context:
1846
1846
        self.format = format
1847
1847
 
1848
1848
 
 
1849
class NoDiffFound(BzrError):
 
1850
 
 
1851
    _fmt = 'Could not find an appropriate Differ for file "%(path)s"'
 
1852
 
 
1853
    def __init__(self, path):
 
1854
        BzrError.__init__(self, path)
 
1855
 
 
1856
 
1849
1857
class NoDiff(BzrError):
1850
1858
 
1851
1859
    _fmt = "Diff is not installed on this machine: %(msg)s"