diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-26 16:40:47 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-26 16:40:47 +0000 |
commit | 04855cc100f2edcb58bac46f7be45e3c770b5d7d (patch) | |
tree | de8bef66bfe50d88a23e3c4ed38b7890395730cc /Lib/test/test_socket.py | |
parent | 6da56f9428896f635a794ad523bd88190758e6ab (diff) | |
download | cpython-git-04855cc100f2edcb58bac46f7be45e3c770b5d7d.tar.gz |
Fix typo.
Diffstat (limited to 'Lib/test/test_socket.py')
-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 7246c51ec3..f9d8313adf 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 |