From: Greg Ward Date: Mon, 2 Oct 2000 02:25:51 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v2.0c1~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0295181fa6089d53268b87d6756363796cd7c27d;p=thirdparty%2FPython%2Fcpython.git Typo fix. --- diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 80da3acc864d..804dcffa604b 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