~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-17 02:18:48 UTC
  • mfrom: (1711.2.58 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060617021848-38906188fc2a0300
(jamesh, jam) fix external_diff to support any file-like object (#4047, #48914)

Show diffs side-by-side

added added

removed removed

Lines of Context:
862
862
        self.format = format
863
863
 
864
864
 
 
865
class NoDiff(BzrNewError):
 
866
    """Diff is not installed on this machine: %(msg)s"""
 
867
 
 
868
    def __init__(self, msg):
 
869
        super(NoDiff, self).__init__(msg=msg)
 
870
 
 
871
 
865
872
class NoDiff3(BzrNewError):
866
873
    """Diff3 is not installed on this machine."""
867
874