Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/plugin.py')
-rw-r--r--plugins/plugin.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/plugin.py b/plugins/plugin.py
index 3065129..bdba7aa 100644
--- a/plugins/plugin.py
+++ b/plugins/plugin.py
@@ -16,12 +16,11 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-import gobject
+from util.gtkcompat import GObject
-
-class Plugin(gobject.GObject):
+class Plugin(GObject.GObject):
def __init__(self):
- gobject.GObject.__init__(self)
+ GObject.GObject.__init__(self)
def setup(self):
""" Setup is called once, when the Turtle Window is created. """