diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2009-03-02 21:11:31 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2009-03-02 21:11:31 +0000 |
commit | 7170d0a8b85ee38da227c2db26f470750b6e1509 (patch) | |
tree | 0b11d022213b76cfcc16e7f10184c3727b7c8dea /numpy/linalg | |
parent | 553a30079c37ebecf8a37b9ee1fbf219d1d09053 (diff) | |
download | numpy-7170d0a8b85ee38da227c2db26f470750b6e1509.tar.gz |
Python 3000 fixes for 2to3 [patch by James Watson].
Diffstat (limited to 'numpy/linalg')
-rwxr-xr-x | numpy/linalg/lapack_lite/make_lite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/lapack_lite/make_lite.py b/numpy/linalg/lapack_lite/make_lite.py index ebd450023..1687cfd82 100755 --- a/numpy/linalg/lapack_lite/make_lite.py +++ b/numpy/linalg/lapack_lite/make_lite.py @@ -141,7 +141,7 @@ class FortranLibrary: class LapackLibrary(FortranLibrary): def _newFortranRoutine(self, rname, filename): routine = FortranLibrary._newFortranRoutine(self, rname, filename) - if 'BLAS' in filename + if 'BLAS' in filename: routine.type = 'blas' elif rname.startswith('z'): routine.type = 'zlapack' |