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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0295181fa6089d53268b87d6756363796cd7c27d;p=python Typo fix. --- diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 80da3acc86..804dcffa60 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