pep8 fixes & typos

svn: r12976
This commit is contained in:
Raphael Ackermann
2009-08-12 09:59:41 +00:00
parent 516ba9ec95
commit 3c070fb0a6
6 changed files with 22 additions and 23 deletions

View File

@@ -266,7 +266,7 @@ class ListModel(object):
def get_icon(self):
"""
Return an icond to be used for Drag and drop.
Return an icon to be used for Drag and drop.
"""
if self.mode == gtk.SELECTION_SINGLE:
store, node = self.selection.get_selected()
@@ -279,7 +279,7 @@ class ListModel(object):
def __build_select_list(self, store, path, node, dlist):
"""
GTK callback function for waliking a select list
GTK callback function for walking a select list
"""
dlist.append(self.model.get_value(node, self.data_index))