diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-11 15:13:49 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-11 15:13:49 +0000 |
commit | 3c6dff2d99fb96548f8b00b510e00948d4e9bc4a (patch) | |
tree | c868bf9de8c29ce87a9dd6d755f20764acbb545b | |
parent | 3854a5b6611e57b3b597d66ddd6c5f32106a5026 (diff) | |
download | anaconda-3c6dff2d99fb96548f8b00b510e00948d4e9bc4a.tar.gz anaconda-3c6dff2d99fb96548f8b00b510e00948d4e9bc4a.tar.xz anaconda-3c6dff2d99fb96548f8b00b510e00948d4e9bc4a.zip |
typo
-rw-r--r-- | todo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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_key (dev): + if dev != "lo" and self.netdevices.has_key (dev): self.netdevices[dev] = NetworkDevice (dev) return self.netdevices |