Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorSayamindu Dasgupta <sayamindu@gmail.com>2008-11-18 15:55:18 (GMT)
committer Sayamindu Dasgupta <sayamindu@gmail.com>2008-11-18 15:55:18 (GMT)
commit7e4f1c1f18b7507426f5eee062a3e3dee7eb023c (patch)
treef9c45b24a4de78a8979b4d1e285aa4b4e455f16e /extensions
parent4ef57621255c90a91322b47220065b9f6222785c (diff)
More pylint fixes
Diffstat (limited to 'extensions')
-rw-r--r--extensions/cpsection/language/view.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/extensions/cpsection/language/view.py b/extensions/cpsection/language/view.py
index 82bc9ff..12fe0c9 100644
--- a/extensions/cpsection/language/view.py
+++ b/extensions/cpsection/language/view.py
@@ -19,7 +19,6 @@ import gobject
import gettext
from sugar.graphics import style
-from sugar.graphics import iconentry
from sugar.graphics.icon import Icon
from jarabe.controlpanel.sectionview import SectionView
@@ -121,10 +120,12 @@ class Language(SectionView):
combobox.show()
- def _attach_to_table(self, widget, row, column, padding=20, yoptions=gtk.FILL):
+ def _attach_to_table(self, widget, row, column, padding=20, \
+ yoptions=gtk.FILL):
self._table.attach(widget, row, column, \
self._selected_lang_count - 1, self._selected_lang_count, \
- xoptions=gtk.FILL, yoptions=yoptions, xpadding=padding, ypadding=padding)
+ xoptions=gtk.FILL, yoptions=yoptions, xpadding=padding, \
+ ypadding=padding)
def _delete_last_row(self):
'''Deletes the last row of the table'''