diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gtk/application.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/gtk/application.py b/examples/gtk/application.py index 10f0ea2f..5d654288 100644 --- a/examples/gtk/application.py +++ b/examples/gtk/application.py @@ -148,19 +148,19 @@ class Application(gtk.Window): # Override in subclass def new(self): - raise NotImplemented("Open") + raise NotImplementedError("Open") def open(self): - raise NotImplemented("Open") + raise NotImplementedError("Open") def save(self): - raise NotImplemented("Save") + raise NotImplementedError("Save") def close(self): - raise NotImplemented("Close") + raise NotImplementedError("Close") def about(self): - raise NotImplemented("About") + raise NotImplementedError("About") def run(self): self.show() |