/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: 2006-08-01 07:33:18 UTC
  • mfrom: (1900.2.2 bzr.merge.54651)
  • Revision ID: pqm@pqm.ubuntu.com-20060801073318-1e91a2ca9073f815
(john) external diff fixes (#54651)

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):