summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/util.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-10-24 15:51:30 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-10-24 15:51:30 (GMT)
commit1733c9362b7520278120423550de28da44d15f33 (patch)
treef445f43584ae72d40b014a6a49c5ac48c2914ee6 /Lib/distutils/util.py
parent468f700af773815e93f32743fa69c1815241d286 (diff)
downloadcpython-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.py2
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