diff options
Diffstat (limited to 'numpy/f2py')
-rwxr-xr-x | numpy/f2py/crackfortran.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py index 3463b69f1..ccc62188b 100755 --- a/numpy/f2py/crackfortran.py +++ b/numpy/f2py/crackfortran.py @@ -2547,7 +2547,7 @@ def use2fortran(use,tab=''): if ret and ret[-1]==',': ret=ret[:-1] continue if 'only' in use[m] and use[m]['only']: - ret='%s,only:'%(ret) + ret='%s only:'%(ret) if 'map' in use[m] and use[m]['map']: c=' ' for k in use[m]['map'].keys(): |