commit | 958412e2e622ae27fdc2a3d9bc0a3a41a3eea9b4 | [log] [tgz] |
---|---|---|
author | cclauss <cclauss@bluewin.ch> | Thu Aug 17 19:25:39 2017 +0200 |
committer | GitHub <noreply@github.com> | Thu Aug 17 19:25:39 2017 +0200 |
tree | 7a6901ad0e9295ccf7be5f1b83ad3016e157f9c6 | |
parent | 5e39ecc569153db63bc4e1587f703c7894223375 [diff] [blame] |
Old style exception --> new style exception
diff --git a/python/mox.py b/python/mox.py index 257468e..43db021 100755 --- a/python/mox.py +++ b/python/mox.py
@@ -778,7 +778,7 @@ rhs: any python object """ - raise NotImplementedError, 'method must be implemented by a subclass.' + raise NotImplementedError('method must be implemented by a subclass.') def __eq__(self, rhs): return self.equals(rhs)