From: Tim Peters Date: Thu, 4 Apr 2002 23:17:31 +0000 (+0000) Subject: Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils. X-Git-Tag: v2.3c1~6122 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a863270f0403e537f2de6cc665cf172be673ca48;p=python Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils. --- diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 453ca97a09..97d094b1b2 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -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 ()