summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-07-19 20:06:27 +0000
committerJeremy Katz <katzj@redhat.com>2006-07-19 20:06:27 +0000
commit20716bf903e74d6ea6f6e4c6b5787e960fa7ccf3 (patch)
treec455e715b088d1db1189f22fdeeb80e6be188372 /iw
parent2cf9e9c5ea46cac0a99fddf70b48f653c27f327d (diff)
downloadanaconda-20716bf903e74d6ea6f6e4c6b5787e960fa7ccf3.tar.gz
anaconda-20716bf903e74d6ea6f6e4c6b5787e960fa7ccf3.tar.xz
anaconda-20716bf903e74d6ea6f6e4c6b5787e960fa7ccf3.zip
2006-07-19 Jeremy Katz <katzj@redhat.com>
* iw/task_gui.py (TaskWindow._addRepo): Actually set the product name...
Diffstat (limited to 'iw')
-rw-r--r--iw/task_gui.py5
1 files changed, 5 insertions, 0 deletions
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: