Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/game.py
diff options
context:
space:
mode:
Diffstat (limited to 'game.py')
-rw-r--r--game.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/game.py b/game.py
index c5e54d1..9ed439c 100644
--- a/game.py
+++ b/game.py
@@ -16,12 +16,12 @@
#
import logging
-import gobject
+from gi.repository import GObject
from os.path import join
from gettext import gettext as _
-from gobject import SIGNAL_RUN_FIRST, TYPE_PYOBJECT, GObject, timeout_add
-from gobject import source_remove
+from GObject import SIGNAL_RUN_FIRST, TYPE_PYOBJECT, GObject, timeout_add
+from GObject import source_remove
from model import Model
from audio import Audio
@@ -58,7 +58,7 @@ class MemorizeGame(GObject):
}
def __init__(self):
- gobject.GObject.__init__(self)
+ GObject.GObject.__init__(self)
self.myself = None
self.players_score = {}
self.players = []