Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/wm.py
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 17:53:25 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-11-23 16:14:32 (GMT)
commite2231d56203dcc58cc8a8a873ab1eef1b56a629e (patch)
tree4ab1f9f1c4284515a1f83cb359b1d89c3c938a54 /src/sugar/wm.py
parent131c28bb724d89900a1707ad4cae726ba8e9ce5a (diff)
PEP8 cleanup: fix number of blank lines
Caught by pep8. Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
Diffstat (limited to 'src/sugar/wm.py')
-rw-r--r--src/sugar/wm.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sugar/wm.py b/src/sugar/wm.py
index 3bf1421..eaa196e 100644
--- a/src/sugar/wm.py
+++ b/src/sugar/wm.py
@@ -22,6 +22,7 @@ UNSTABLE. Used only internally by Activity and jarabe.
import gtk
import logging
+
def _property_get_trapped(window, prop, prop_type):
gtk.gdk.error_trap_push()
@@ -35,6 +36,7 @@ def _property_get_trapped(window, prop, prop_type):
return prop_info
+
def _property_change_trapped(window, prop, prop_type, format, mode, data):
gtk.gdk.error_trap_push()
@@ -83,4 +85,3 @@ def set_activity_id(window, activity_id):
def set_bundle_id(window, bundle_id):
_property_change_trapped(window, '_SUGAR_BUNDLE_ID', 'STRING', 8,
gtk.gdk.PROP_MODE_REPLACE, bundle_id)
-