diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | iw/task_gui.py | 5 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2006-07-19 Jeremy Katz <katzj@redhat.com> + * iw/task_gui.py (TaskWindow._addRepo): Actually set the product + name... + * scripts/scrubtree: Fix for new busybox so that we get links to all of the busybox applets (#199463) * scripts/mk-images: Likewise diff --git a/iw/task_gui.py b/iw/task_gui.py index cf46f7338..e1a611246 100644 --- a/iw/task_gui.py +++ b/iw/task_gui.py @@ -67,6 +67,11 @@ class TaskWindow(InstallWindow): (dxml, dialog) = gui.getGladeWidget("addrepo.glade", "addRepoDialog") gui.addFrame(dialog) + + lbl = dxml.get_widget("descLabel") + txt = lbl.get_text() + lbl.set_text(txt %(productName,)) + dialog.show_all() while 1: |