diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:51:30 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:51:30 (GMT) |
commit | 1733c9362b7520278120423550de28da44d15f33 (patch) | |
tree | f445f43584ae72d40b014a6a49c5ac48c2914ee6 /Lib/distutils/util.py | |
parent | 468f700af773815e93f32743fa69c1815241d286 (diff) | |
download | cpython-1733c9362b7520278120423550de28da44d15f33.zip cpython-1733c9362b7520278120423550de28da44d15f33.tar.gz cpython-1733c9362b7520278120423550de28da44d15f33.tar.bz2 |
fixed warning and error message
Diffstat (limited to 'Lib/distutils/util.py')
-rw-r--r-- | Lib/distutils/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index a87ef44..6bff44f 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -448,7 +448,7 @@ def byte_compile(py_files, optimize=0, force=0, prefix=None, base_dir=None, """ # nothing is done if sys.dont_write_bytecode is True if sys.dont_write_bytecode: - raise DistutilsByteCompileError('byte-compiling not supported.') + raise DistutilsByteCompileError('byte-compiling is disabled.') # First, if the caller didn't force us into direct or indirect mode, # figure out which mode we should be in. We take a conservative |