summaryrefslogtreecommitdiffstats
path: root/iw/network_gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-06-13 21:01:24 +0000
committerChris Lumens <clumens@redhat.com>2006-06-13 21:01:24 +0000
commit5afa1354756e44201f8195f33aefcb7cc398c960 (patch)
treeb716e56cc40778c51179f141353d16aaa2f375ee /iw/network_gui.py
parent6a4540cd08c92bfb5ad6421ab73a8bb52a4c25dd (diff)
downloadanaconda-5afa1354756e44201f8195f33aefcb7cc398c960.tar.gz
anaconda-5afa1354756e44201f8195f33aefcb7cc398c960.tar.xz
anaconda-5afa1354756e44201f8195f33aefcb7cc398c960.zip
Strings vs. widget.
Diffstat (limited to 'iw/network_gui.py')
-rw-r--r--iw/network_gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/network_gui.py b/iw/network_gui.py
index fbf4e7271..ec7c0cddd 100644
--- a/iw/network_gui.py
+++ b/iw/network_gui.py
@@ -70,8 +70,8 @@ class NetworkWindow(InstallWindow):
tmpvals = {}
for t in range(len(global_options)):
try:
- network.sanityCheckIPString(self.globals[global_options[t]].get_text())
- tmpvals[t] = self.globals[global_options[t]].get_text()
+ network.sanityCheckIPString(self.globals[global_options[t]])
+ tmpvals[t] = self.globals[global_options[t]]
except network.IPMissing, msg:
if t < 2 and self.getNumberActiveDevices() > 0:
if self.handleMissingOptionalIP(global_options[t]):