]> granicus.if.org Git - python/commitdiff
Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils.
authorTim Peters <tim.peters@gmail.com>
Thu, 4 Apr 2002 23:17:31 +0000 (23:17 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 4 Apr 2002 23:17:31 +0000 (23:17 +0000)
Lib/distutils/command/build_py.py

index 453ca97a09c6da39c6cc69338ab9aebef1d12e6b..97d094b1b29eb6342b3ec7a58b91cb180c112943 100644 (file)
@@ -190,9 +190,9 @@ class build_py (Command):
         if not os.path.isfile(module_file):
             self.warn("file %s (for module %s) not found" %
                       (module_file, module))
-            return False
+            return 0
         else:
-            return True
+            return 1
 
     # check_module ()