Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/graphics/window.py
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2009-08-24 12:51:00 (GMT)
committer Simon Schampijer <simon@schampijer.de>2009-08-24 12:51:00 (GMT)
commite1e8647de9e1b9fa79c11015ad63f6dd78a671f3 (patch)
tree99e0f2913c90e7010df8f848984ed07cb11d753e /src/sugar/graphics/window.py
parent496090fe62191da435044a3102378ab4dbadbda1 (diff)
pylint fixes
Diffstat (limited to 'src/sugar/graphics/window.py')
-rw-r--r--src/sugar/graphics/window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sugar/graphics/window.py b/src/sugar/graphics/window.py
index 0d53776..4b25bc0 100644
--- a/src/sugar/graphics/window.py
+++ b/src/sugar/graphics/window.py
@@ -22,7 +22,6 @@ STABLE.
import gobject
import gtk
-import logging
import warnings
from sugar.graphics.icon import Icon
@@ -101,7 +100,8 @@ class Window(gtk.Window):
self._event_box = gtk.EventBox()
self._hbox.pack_start(self._event_box)
self._event_box.show()
- self._event_box.add_events(gtk.gdk.POINTER_MOTION_HINT_MASK | gtk.gdk.POINTER_MOTION_MASK)
+ self._event_box.add_events(gtk.gdk.POINTER_MOTION_HINT_MASK
+ | gtk.gdk.POINTER_MOTION_MASK)
self._event_box.connect('motion-notify-event', self.__motion_notify_cb)
self.add(self._vbox)