diff options
Diffstat (limited to 'numpy/distutils/command/install_headers.py')
-rw-r--r-- | numpy/distutils/command/install_headers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/install_headers.py b/numpy/distutils/command/install_headers.py index 6512d5103..f029764d0 100644 --- a/numpy/distutils/command/install_headers.py +++ b/numpy/distutils/command/install_headers.py @@ -13,7 +13,7 @@ class install_headers (old_install_headers): for header in headers: if isinstance(header,tuple): # Kind of a hack, but I don't know where else to change this... - if header[0] == 'numpy.base': + if header[0] == 'numpy.core': header = ('numpy', header[1]) if os.path.splitext(header[1])[1] == '.inc': continue |