[Python-checkins] distutils2: typo at command/build_py.py corrected.

tarek.ziade python-checkins at python.org
Thu Aug 19 08:34:13 CEST 2010


tarek.ziade pushed aeaf5439d13c to distutils2:

http://hg.python.org/distutils2/rev/aeaf5439d13c
changeset:   563:aeaf5439d13c
user:        Zubin Mithra <zubin.mithra at gmail.com>
date:        Thu Jul 15 18:47:10 2010 +0530
summary:     typo at command/build_py.py corrected.
files:       src/distutils2/command/build_py.py

diff --git a/src/distutils2/command/build_py.py b/src/distutils2/command/build_py.py
--- a/src/distutils2/command/build_py.py
+++ b/src/distutils2/command/build_py.py
@@ -150,8 +150,8 @@
             self.build_packages()
             self.build_package_data()
 
-        if self.distribution.use_2to3 and self_updated_files:
-            self.run_2to3(self._updated_files, self._doctests_2to3, 
+        if self.distribution.use_2to3 and self._updated_files:
+            self.run_2to3(self._updated_files, self._doctests_2to3,
                                             self.distribution.use_2to3_fixers)
 
         self.byte_compile(self.get_outputs(include_bytecode=0))

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list