summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/distutils/command/install_lib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 80da3ac..804dcff 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -162,7 +162,7 @@ class install_lib (Command):
for py_file in py_filenames:
if self.compile:
bytecode_files.append(py_file + "c")
- if self.optmize > 0:
+ if self.optimize > 0:
bytecode_files.append(py_file + "o")
return bytecode_files