summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-31 13:33:22 +0000
committerMatt Wilson <msw@redhat.com>1999-08-31 13:33:22 +0000
commit266d30a1d19e9f9ba56590f92f30793ccca03dd9 (patch)
treea51bc225ffc0a03603f6180a17e7e2faecd1613f /text.py
parentdfd08711c55b93d63246131fe52724f51ea91aaa (diff)
downloadanaconda-266d30a1d19e9f9ba56590f92f30793ccca03dd9.tar.gz
anaconda-266d30a1d19e9f9ba56590f92f30793ccca03dd9.tar.xz
anaconda-266d30a1d19e9f9ba56590f92f30793ccca03dd9.zip
configure first device alphabetically, not first device hash-wise
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/text.py b/text.py
index 7fae80c1c..b9f5a17b6 100644
--- a/text.py
+++ b/text.py
@@ -560,7 +560,9 @@ class NetworkWindow:
# XXX expert mode, allow changing network settings here
return INSTALL_NOOP
- dev = devices[devices.keys ()[0]]
+ list = devices.keys ()
+ list.sort()
+ dev = list[0]
firstg = Grid (1, 1)
boot = dev.get ("bootproto")