Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2011-06-20 20:08:07 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2011-06-20 20:08:07 (GMT)
commiteae863e23dca75059472b13948391e2707b77341 (patch)
treeb222899ea61af7c492945770a719f9a4b5ec533d
parentcd00af6a98e91d623a44c81af824082f8d14d95b (diff)
pep8 fixes
-rw-r--r--utils.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index fdf7e95..cb5b53f 100644
--- a/utils.py
+++ b/utils.py
@@ -22,13 +22,14 @@ from sugar.graphics.combobox import ComboBox as _ComboBox
from theme import *
+
class ComboBox(_ComboBox):
def __init__(self):
_ComboBox.__init__(self)
self.set_name('we-really-need-it-to-use-custom-combobox-colors')
- def append_item(self, action_id, text = None, icon_name = None, size = None,
- pixbuf = None, position = None):
+ def append_item(self, action_id, text=None, icon_name=None, size=None,
+ pixbuf=None, position=None):
if not self._icon_renderer and (icon_name or pixbuf):
self._icon_renderer = gtk.CellRendererPixbuf()