]> granicus.if.org Git - python/commitdiff
Add missing closing paren in docstring (thanks Ezio)
authorÉric Araujo <merwok@netwok.org>
Sun, 21 Aug 2011 10:53:37 +0000 (12:53 +0200)
committerÉric Araujo <merwok@netwok.org>
Sun, 21 Aug 2011 10:53:37 +0000 (12:53 +0200)
Lib/distutils/tests/support.py

index 81289db4a1aab3d9ad8d6b255fec8c2c38210d20..49277111bfae05e89dc8c70364a8076345eb9af3 100644 (file)
@@ -138,7 +138,7 @@ def copy_xxmodule_c(directory):
 
         def test_compile(self):
             copy_xxmodule_c(self.tmpdir)
-            self.assertIn('xxmodule.c', os.listdir(self.tmpdir)
+            self.assertIn('xxmodule.c', os.listdir(self.tmpdir))
 
     If the source file can be found, it will be copied to *directory*.  If not,
     the test will be skipped.  Errors during copy are not caught.