[Numpy-svn] r3867 - trunk/numpy/distutils/fcompiler

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Jun 8 03:36:57 EDT 2007


Author: pearu
Date: 2007-06-08 02:36:33 -0500 (Fri, 08 Jun 2007)
New Revision: 3867

Modified:
   trunk/numpy/distutils/fcompiler/__init__.py
Log:
Fix typo.

Modified: trunk/numpy/distutils/fcompiler/__init__.py
===================================================================
--- trunk/numpy/distutils/fcompiler/__init__.py	2007-06-08 07:32:05 UTC (rev 3866)
+++ trunk/numpy/distutils/fcompiler/__init__.py	2007-06-08 07:36:33 UTC (rev 3867)
@@ -42,7 +42,7 @@
 
 def str2bool(s):
     if is_string(s):
-        return not (s == '0' or s.lower() == 'False')
+        return not (s == '0' or s.lower() == 'false')
     return bool(s)
 
 class FCompiler(CCompiler):




More information about the Numpy-svn mailing list