/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: John Arbash Meinel
  • Date: 2006-08-08 23:48:44 UTC
  • mfrom: (1910 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060808234844-602f87fbb7bbd2fe
[merge] bzr.dev 1910

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