summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-08-11 13:01:48 +0000
committerpnfisher <pnfisher>1999-08-11 13:01:48 +0000
commitcdef314eea696c41da7b4e69cdb20fa71f48e75d (patch)
tree103d4318a22a9918d2167eba4bba385c5d598915
parente931d3026128cde5b167459ca1d228c5b2401693 (diff)
downloadanaconda-cdef314eea696c41da7b4e69cdb20fa71f48e75d.tar.gz
anaconda-cdef314eea696c41da7b4e69cdb20fa71f48e75d.tar.xz
anaconda-cdef314eea696c41da7b4e69cdb20fa71f48e75d.zip
(Network.available): add temp fix since has_key seems to be broken (XXX)
-rw-r--r--todo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/todo.py b/todo.py
index 1f4e2fbcd..1a6c37d94 100644
--- a/todo.py
+++ b/todo.py
@@ -108,7 +108,7 @@ class Network:
lines = lines[2:]
for line in lines:
dev = string.strip (line[0:6])
- if dev != "lo" and not self.netdevices.has_hey (dev):
+ if dev != "lo": #and self.netdevices.has_hey (dev):
self.netdevices[dev] = NetworkDevice (dev)
return self.netdevices