summaryrefslogtreecommitdiffstats
path: root/Lib/compileall.py
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2003-08-27 20:19:35 (GMT)
committerThomas Heller <theller@ctypes.org>2003-08-27 20:19:35 (GMT)
commit4651f53949b929f33a63e74232da1b26fe4a8d70 (patch)
tree60097d03897f7aaad55af80b5d20089cb2b8df48 /Lib/compileall.py
parent4f4dbef2cadac2346e4e0357e72cea5aa40564ef (diff)
downloadcpython-4651f53949b929f33a63e74232da1b26fe4a8d70.zip
cpython-4651f53949b929f33a63e74232da1b26fe4a8d70.tar.gz
cpython-4651f53949b929f33a63e74232da1b26fe4a8d70.tar.bz2
Fix typo in docstring: The switch is '-x', not '-s'.
Will backport to 2.3 myself.
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r--Lib/compileall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index ebe04ff..f906c80 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -110,7 +110,7 @@ def main():
except getopt.error, msg:
print msg
print "usage: python compileall.py [-l] [-f] [-q] [-d destdir] " \
- "[-s regexp] [directory ...]"
+ "[-x regexp] [directory ...]"
print "-l: don't recurse down"
print "-f: force rebuild even if timestamps are up-to-date"
print "-q: quiet operation"