diff options
author | Thomas Heller <theller@ctypes.org> | 2003-08-27 20:19:35 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2003-08-27 20:19:35 (GMT) |
commit | 4651f53949b929f33a63e74232da1b26fe4a8d70 (patch) | |
tree | 60097d03897f7aaad55af80b5d20089cb2b8df48 | |
parent | 4f4dbef2cadac2346e4e0357e72cea5aa40564ef (diff) | |
download | cpython-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.
-rw-r--r-- | Lib/compileall.py | 2 |
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" |