diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-26 15:54:43 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-26 15:54:43 +0000 |
commit | 1ee6d193573a320c23e813617931bfc57c642582 (patch) | |
tree | 54de5ff71e8c8f3d5c21e7afd44d6fa91d6afb7d /numpy | |
parent | 81ceefc3806dbb0bf007ffc5a4f1908f243db9e6 (diff) | |
download | numpy-1ee6d193573a320c23e813617931bfc57c642582.tar.gz |
BUG: Fix missing return stmt in get_npy_pkg_dir.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/misc_util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index cd5c7327b..f579a95d8 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -1887,6 +1887,7 @@ def get_npy_pkg_dir(): import numpy d = os.path.join(os.path.dirname(numpy.__file__), 'core', 'lib', 'npy-pkg-config') + return d def get_info(pkgname, dirs=None): |