From 4466fe2989ae04754dc813115257b4d984e36fdc Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Mon, 19 Sep 2011 20:59:57 +0200 Subject: [PATCH] fix gobject import in non-gtk3 configuration --- Mailnag/mailnag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailnag/mailnag.py b/Mailnag/mailnag.py index afc5d88..0993045 100644 --- a/Mailnag/mailnag.py +++ b/Mailnag/mailnag.py @@ -39,7 +39,7 @@ if __builtins__.USE_GTK3: from gi.repository import GObject, GLib, GdkPixbuf, Gtk, Notify else: Gtk = __import__("gtk") - from gi.repository import GObject + GObject = __import__("gobject") import pynotify import time