diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-04-04 23:17:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-04-04 23:17:31 (GMT) |
commit | a863270f0403e537f2de6cc665cf172be673ca48 (patch) | |
tree | 0b2d17b7120bae3d0119d0a64170709cd93cbb18 /Lib | |
parent | 72118e5bc7fff604058b821ac8fca6587eedf735 (diff) | |
download | cpython-a863270f0403e537f2de6cc665cf172be673ca48.zip cpython-a863270f0403e537f2de6cc665cf172be673ca48.tar.gz cpython-a863270f0403e537f2de6cc665cf172be673ca48.tar.bz2 |
Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/build_py.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 453ca97..97d094b 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 () |