diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2019-03-02 15:00:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 15:00:07 -0800 |
commit | 479f86d799e8374dd14ff5ee1af54d6b662a816e (patch) | |
tree | 7237f108c8afe6d3b71b9e9503f8a537703eee96 /numpy/distutils/fcompiler | |
parent | a8dedaef26cca77f71ec9caba000339543796bd5 (diff) | |
download | numpy-479f86d799e8374dd14ff5ee1af54d6b662a816e.tar.gz |
Update numpy/distutils/fcompiler/environment.py
Co-Authored-By: rainwoodman <rainwoodman@gmail.com>
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/environment.py b/numpy/distutils/fcompiler/environment.py index 4d02bbdbb..3a45934da 100644 --- a/numpy/distutils/fcompiler/environment.py +++ b/numpy/distutils/fcompiler/environment.py @@ -73,7 +73,7 @@ class EnvironmentConfig(object): var = envvar_contents if confvar is not None and self._conf: if confvar in self._conf: - source, confvar_contents = self._conf[convvar] + source, confvar_contents = self._conf[confvar] var = convert(confvar_contents) return var |