diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2019-04-11 22:03:00 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2019-04-11 22:06:59 -0700 |
commit | 20f5774acba6195fbf0611f37770a3490bb27f24 (patch) | |
tree | 547f3617edacb042fc97dad94408cbf4c0663cfc /numpy/distutils | |
parent | d7a73f8c700edcf150d59a570e0173b60f84c7a7 (diff) | |
download | numpy-20f5774acba6195fbf0611f37770a3490bb27f24.tar.gz |
MAINT: fix typo in 'self'
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/fcompiler/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/__init__.py b/numpy/distutils/fcompiler/__init__.py index bd3739a81..98c2840ab 100644 --- a/numpy/distutils/fcompiler/__init__.py +++ b/numpy/distutils/fcompiler/__init__.py @@ -362,7 +362,7 @@ class FCompiler(CCompiler): set_exe('archiver') set_exe('ranlib') - def update_executables(elf): + def update_executables(self): """Called at the beginning of customisation. Subclasses should override this if they need to set up the executables dictionary. |