In gnomeglade.py, connect_signal_handlers(), the wrong variable name is used,
the widget list is in the "widget" variable...

-- 
Vincent Legoll
Index: gnomeglade.py
===================================================================
--- gnomeglade.py	(révision 1153)
+++ gnomeglade.py	(copie de travail)
@@ -127,7 +127,7 @@
                 widget = list(widget)
             except TypeError:
                 widget = [widget]
-            for w in widgets:
+            for w in widget:
                 try:
                     if when == 'on':
                         w.connect(signal, method)
_______________________________________________
meld-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/meld-list

Reply via email to