diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-31 13:33:22 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-31 13:33:22 +0000 |
commit | 266d30a1d19e9f9ba56590f92f30793ccca03dd9 (patch) | |
tree | a51bc225ffc0a03603f6180a17e7e2faecd1613f /text.py | |
parent | dfd08711c55b93d63246131fe52724f51ea91aaa (diff) | |
download | anaconda-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.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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") |