From 9bf4661453162136abbea1a9df5be121bb224850 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sat, 3 Jan 2015 16:08:55 +0100 Subject: [PATCH] 8169 8267 typo: Glib should be GLib --- gramps/gen/plug/_gramplet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/plug/_gramplet.py b/gramps/gen/plug/_gramplet.py index dabb32272..9cf872b94 100644 --- a/gramps/gen/plug/_gramplet.py +++ b/gramps/gen/plug/_gramplet.py @@ -370,7 +370,7 @@ class Gramplet(object): """ Resume the :meth:`main` method that has previously paused. """ - from gi.repository import GObject, Glib + from gi.repository import GObject, GLib self._pause = False self._idle_id = GLib.idle_add(self._updater, priority=GObject.PRIORITY_LOW - 10)