~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
934
934
    """Diff is not installed on this machine: %(msg)s"""
935
935
 
936
936
    def __init__(self, msg):
937
 
        super(NoDiff, self).__init__(msg=msg)
 
937
        BzrNewError.__init__(self, msg=msg)
938
938
 
939
939
 
940
940
class NoDiff3(BzrNewError):