From b475c03b4d6b41aeba9fc4cf6f4a4e065b4f714b Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 28 Nov 2013 14:26:48 -0500 Subject: [PATCH] [inspect] py23 Use new-style classes --- Lib/fontTools/inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/fontTools/inspect.py b/Lib/fontTools/inspect.py index 2a2f3df4a..93186f02d 100644 --- a/Lib/fontTools/inspect.py +++ b/Lib/fontTools/inspect.py @@ -219,7 +219,7 @@ class FontTreeModel(gtk.GenericTreeModel): def on_iter_parent(self, rowref): return rowref.get_parent() -class Inspect: +class Inspect(object): def _delete_event(self, widget, event, data=None): gtk.main_quit()