fix gobject import in non-gtk3 configuration

This commit is contained in:
Patrick Ulbrich
2011-09-19 20:59:57 +02:00
parent 75f8219156
commit 4466fe2989

View File

@@ -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