diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-26 16:40:47 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-26 16:40:47 (GMT) |
commit | 04855cc100f2edcb58bac46f7be45e3c770b5d7d (patch) | |
tree | de8bef66bfe50d88a23e3c4ed38b7890395730cc | |
parent | 6da56f9428896f635a794ad523bd88190758e6ab (diff) | |
download | cpython-04855cc100f2edcb58bac46f7be45e3c770b5d7d.zip cpython-04855cc100f2edcb58bac46f7be45e3c770b5d7d.tar.gz cpython-04855cc100f2edcb58bac46f7be45e3c770b5d7d.tar.bz2 |
Fix typo.
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 7246c51..f9d8313 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -270,7 +270,7 @@ class GeneralModuleTests(unittest.TestCase): all_host_names = [hostname, hname] + aliases fqhn = socket.getfqdn() if not fqhn in all_host_names: - self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqdn, repr(all_host_names))) + self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqhn, repr(all_host_names))) def testRefCountGetNameInfo(self): # Testing reference count for getnameinfo |