diff options
author | cookedm <cookedm@localhost> | 2006-06-09 20:04:58 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-06-09 20:04:58 +0000 |
commit | e0bd761dc33d9716be220d6481756aa982599132 (patch) | |
tree | 0fb7c1c52d151c54863d51fe473c6ce72d919f9f | |
parent | 8360b0b8762b4abf64e6528acd8514b655ab360c (diff) | |
download | numpy-e0bd761dc33d9716be220d6481756aa982599132.tar.gz |
Fix typo in system_info (at 6am 'libray' looks like 'library')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index a038650f6..55ef39e8b 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1082,7 +1082,7 @@ def get_atlas_version(**config): c = cmd_config(Distribution()) s, o = c.get_output(atlas_version_c_text, libraries=config.get('libraries', []), - libray_dirs=config.get('library_dirs', []), + library_dirs=config.get('library_dirs', []), ) atlas_version = None |