summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-10-02 02:25:51 (GMT)
committerGreg Ward <gward@python.net>2000-10-02 02:25:51 (GMT)
commit0295181fa6089d53268b87d6756363796cd7c27d (patch)
tree61d071c34ae5b9263e666bbbc8df41907dde1bef
parent73a6c942cda33c0b6c97a10b7ef5664e043f987f (diff)
downloadcpython-0295181fa6089d53268b87d6756363796cd7c27d.zip
cpython-0295181fa6089d53268b87d6756363796cd7c27d.tar.gz
cpython-0295181fa6089d53268b87d6756363796cd7c27d.tar.bz2
Typo fix.
-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