summaryrefslogtreecommitdiff
path: root/numpy/f2py
diff options
context:
space:
mode:
authorJarrod Millman <millman@berkeley.edu>2007-10-29 15:48:12 +0000
committerJarrod Millman <millman@berkeley.edu>2007-10-29 15:48:12 +0000
commit4cd7a18e808e818833a838e5338d614ee5b8bab6 (patch)
tree952b56d0e80554f7ade59092034f0540cb7781df /numpy/f2py
parent8d91e0a60036d37a1875418ac0a8dfe09cbb1047 (diff)
downloadnumpy-4cd7a18e808e818833a838e5338d614ee5b8bab6.tar.gz
another typo
Diffstat (limited to 'numpy/f2py')
-rw-r--r--numpy/f2py/rules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/rules.py b/numpy/f2py/rules.py
index 16bd58fb4..7b53deb9c 100644
--- a/numpy/f2py/rules.py
+++ b/numpy/f2py/rules.py
@@ -1200,7 +1200,7 @@ def buildmodule(m,um):
f.write('C This file is autogenerated with f2py (version:%s)\n'%(f2py_version))
f.write('C It contains Fortran 77 wrappers to fortran functions.\n')
lines = []
- for l in '\n\n'.join(funcwrappers)+'\n'.split('\n'):
+ for l in ('\n\n'.join(funcwrappers)+'\n').split('\n'):
if l and l[0]==' ':
while len(l)>=66:
lines.append(l[:66]+'\n &')