]> granicus.if.org Git - python/commitdiff
Fix a typo
authorBrett Cannon <brett@python.org>
Wed, 14 Nov 2012 20:49:55 +0000 (15:49 -0500)
committerBrett Cannon <brett@python.org>
Wed, 14 Nov 2012 20:49:55 +0000 (15:49 -0500)
Lib/test/test_wait3.py

index 3d70ced655d74e0fc80b76d883dab45287ee6944..f6a065d850d9ce8f993e6c8bd34fe4f3ea08cbc7 100644 (file)
@@ -7,7 +7,7 @@ import unittest
 from test.fork_wait import ForkWait
 from test.support import run_unittest, reap_children
 
-if not hassattr(os, 'fork'):
+if not hasattr(os, 'fork'):
     raise unittest.SkipTest("os.fork not defined")
 
 if not hasattr(os, 'wait3'):