diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-10-29 03:56:32 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-10-29 03:56:32 +0000 |
commit | 43e6f1e649912486d0e6497b3abeea5ff6b7f87f (patch) | |
tree | 04d70921a3fb61c9257159e78def4b5a98ecb520 /network.py | |
parent | e6a3a7ae99f76f6503d835f156c3863aafa5aaf7 (diff) | |
download | anaconda-43e6f1e649912486d0e6497b3abeea5ff6b7f87f.tar.gz anaconda-43e6f1e649912486d0e6497b3abeea5ff6b7f87f.tar.xz anaconda-43e6f1e649912486d0e6497b3abeea5ff6b7f87f.zip |
* network.py (Network): Add missing \n to localhost6 line (#210050)
Diffstat (limited to 'network.py')
-rw-r--r-- | network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network.py b/network.py index 0be4e8e44..576823f9c 100644 --- a/network.py +++ b/network.py @@ -499,7 +499,7 @@ class Network: f.write("# Do not remove the following line, or various programs\n") f.write("# that require network functionality will fail.\n") f.write("127.0.0.1\t\t" + localline) - f.write("::1\t\tlocalhost6.localdomain6 localhost6") + f.write("::1\t\tlocalhost6.localdomain6 localhost6\n") if ip: nameline = "%s\t\t%s" % (ip, self.hostname) |