summaryrefslogtreecommitdiff
path: root/portato/gui/gtk/windows.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--portato/gui/gtk/windows.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py
index 562624c..434381f 100644
--- a/portato/gui/gtk/windows.py
+++ b/portato/gui/gtk/windows.py
@@ -82,7 +82,7 @@ class PluginWindow (AbstractDialog):
col = gtk.TreeViewColumn(_("Enabled"), bcell, active = 2)
view.append_column(col)
- for p in [("<b>"+p.name+"</b>", p.author, p.is_enabled()) for p in plugins]:
+ for p in (("<b>"+p.name+"</b>", p.author, p.is_enabled()) for p in plugins):
self.store.append(p)
self.window.show_all()
@@ -580,7 +580,7 @@ class PackageTable:
store = self.versList.get_model()
# append versions
- for vers, inst in [(x.get_version(), x.is_installed()) for x in self.packages]:
+ for vers, inst in ((x.get_version(), x.is_installed()) for x in self.packages):
if inst:
icon = self.main.instPixbuf
else:
00b29e71a9d7a8dee4c41803581656&follow=1'> r597@Devoty: necoro | 2008-01-10 14:12:35 +0100Necoro1-3/+3 2008-01-10 r595@Devoty: necoro | 2008-01-10 04:04:15 +0100Necoro1-52/+3 2008-01-09 r586@Devoty: necoro | 2008-01-09 14:54:18 +0100Necoro1-1/+1 2007-12-06 r577@Devoty: necoro | 2007-12-06 20:37:36 +0100Necoro1-1/+1 2007-12-06 r572@Devoty: necoro | 2007-11-28 08:48:15 +0100Necoro1-0/+1 2007-11-27 r570@Devoty: necoro | 2007-11-27 02:08:21 +0100Necoro3-84/+108