[kernel] r6022 - people/waldi/utils/kconfigeditor/kconfigeditor

Bastian Blank waldi at costa.debian.org
Thu Mar 2 14:28:56 UTC 2006


Author: waldi
Date: Thu Mar  2 14:28:55 2006
New Revision: 6022

Modified:
   people/waldi/utils/kconfigeditor/kconfigeditor/editor.py
Log:
kconfigeditor/editor.py: Fix subarch handling.



Modified: people/waldi/utils/kconfigeditor/kconfigeditor/editor.py
==============================================================================
--- people/waldi/utils/kconfigeditor/kconfigeditor/editor.py	(original)
+++ people/waldi/utils/kconfigeditor/kconfigeditor/editor.py	Thu Mar  2 14:28:55 2006
@@ -282,13 +282,13 @@
                 text = ""
                 if subarch != "none":
                     text = "Subarch %s / " % subarch
-                    label = gtk.Label(test + "global")
+                    label = gtk.Label(text + "global")
                     label.set_alignment(0, 0)
                     table.attach(label, 0, 1, item, item + 1, gtk.FILL, gtk.FILL)
 
                     table.attach(self.get_edit_label(arch, subarch), 1, 2, item, item + 1, gtk.FILL|gtk.EXPAND, gtk.FILL)
                     table.attach(self.get_edit_button(arch, subarch), 2, 3, item, item + 1, gtk.FILL, gtk.FILL)
-                    item = +1
+                    item += 1
 
                 for flavour in variant_subarch.iterkeys():
                     label = gtk.Label("%sFlavour %s" % (text, flavour))



More information about the Kernel-svn-changes mailing list