summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-05-15 15:42:06 +0000
committerJeremy Katz <katzj@redhat.com>2006-05-15 15:42:06 +0000
commit9221cb3eb443823d7275bf74054e910ab67ccfa5 (patch)
tree52bb575951d96b98274514bc8908e2c9db4cdcc9 /textw
parent1dd77f8594e51628b42274b2e7e63c74a9509c4f (diff)
downloadanaconda-9221cb3eb443823d7275bf74054e910ab67ccfa5.tar.gz
anaconda-9221cb3eb443823d7275bf74054e910ab67ccfa5.tar.xz
anaconda-9221cb3eb443823d7275bf74054e910ab67ccfa5.zip
2006-05-15 Jeremy Katz <katzj@redhat.com>
* textw/network_text.py (NetworkGlobalWindow.__call__): Fix up some variable references
Diffstat (limited to 'textw')
-rw-r--r--textw/network_text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/network_text.py b/textw/network_text.py
index 953bd8cc5..6f1f4b712 100644
--- a/textw/network_text.py
+++ b/textw/network_text.py
@@ -268,17 +268,17 @@ class NetworkGlobalWindow:
thegrid.setField(Label(_("Primary DNS:")), 0, 1, anchorLeft = 1)
ns1Entry = Entry(16)
- ns1Entry.set(network.primaryNS)
+ ns1Entry.set(anaconda.id.network.primaryNS)
thegrid.setField(ns1Entry, 1, 1, padding = (1, 0, 0, 0))
thegrid.setField(Label(_("Secondary DNS:")), 0, 2, anchorLeft = 1)
ns2Entry = Entry(16)
- ns2Entry.set(network.secondaryNS)
+ ns2Entry.set(anaconda.id.network.secondaryNS)
thegrid.setField(ns2Entry, 1, 2, padding = (1, 0, 0, 0))
thegrid.setField(Label(_("Tertiary DNS:")), 0, 3, anchorLeft = 1)
ns3Entry = Entry(16)
- ns3Entry.set(network.ternaryNS)
+ ns3Entry.set(anaconda.id.network.ternaryNS)
thegrid.setField(ns3Entry, 1, 3, padding = (1, 0, 0, 0))
bb = ButtonBar (screen, (TEXT_OK_BUTTON, TEXT_BACK_BUTTON))