diff options
author | Greg Ward <gward@python.net> | 2000-10-02 02:25:51 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-10-02 02:25:51 (GMT) |
commit | 0295181fa6089d53268b87d6756363796cd7c27d (patch) | |
tree | 61d071c34ae5b9263e666bbbc8df41907dde1bef | |
parent | 73a6c942cda33c0b6c97a10b7ef5664e043f987f (diff) | |
download | cpython-0295181fa6089d53268b87d6756363796cd7c27d.zip cpython-0295181fa6089d53268b87d6756363796cd7c27d.tar.gz cpython-0295181fa6089d53268b87d6756363796cd7c27d.tar.bz2 |
Typo fix.
-rw-r--r-- | Lib/distutils/command/install_lib.py | 2 |
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 |