summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-11 15:13:26 +0000
committerMatt Wilson <msw@redhat.com>1999-08-11 15:13:26 +0000
commit3854a5b6611e57b3b597d66ddd6c5f32106a5026 (patch)
treeac3d4ad41ba05df94aa429907adfc8ce375bfa37
parenta392e8360c130ce7ba7d4196f0e757051e2ba394 (diff)
downloadanaconda-3854a5b6611e57b3b597d66ddd6c5f32106a5026.tar.gz
anaconda-3854a5b6611e57b3b597d66ddd6c5f32106a5026.tar.xz
anaconda-3854a5b6611e57b3b597d66ddd6c5f32106a5026.zip
fixed typo
-rw-r--r--todo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/todo.py b/todo.py
index 1a6c37d94..9bd9e6cd4 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 self.netdevices.has_hey (dev):
+ if dev != "lo": and self.netdevices.has_key (dev):
self.netdevices[dev] = NetworkDevice (dev)
return self.netdevices