diff options
author | Chris Lumens <clumens@redhat.com> | 2006-06-13 22:16:30 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-06-13 22:16:30 +0000 |
commit | 5b637b7d95a44d1511b56359d6d6e97bc2d486e8 (patch) | |
tree | 274566a0bff5b73afe51db1738083ee9b09e0fdd /iw | |
parent | bd0b7050fb44068e4fa35beb2904045ec98daa96 (diff) | |
download | anaconda-5b637b7d95a44d1511b56359d6d6e97bc2d486e8.tar.gz anaconda-5b637b7d95a44d1511b56359d6d6e97bc2d486e8.tar.xz anaconda-5b637b7d95a44d1511b56359d6d6e97bc2d486e8.zip |
And stash text, not a widget, into the options dict.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/network_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/network_gui.py b/iw/network_gui.py index ec7c0cddd..207122f8a 100644 --- a/iw/network_gui.py +++ b/iw/network_gui.py @@ -594,7 +594,7 @@ class NetworkWindow(InstallWindow): self.globals = {} for t in range(len(global_options)): - self.globals[global_options[t]] = options[t] + self.globals[global_options[t]] = options[t].get_text() # bring over the value from the loader self.hostnameEntry.set_text(self.network.hostname) |