From: Thomas Heller Date: Wed, 27 Aug 2003 20:19:35 +0000 (+0000) Subject: Fix typo in docstring: The switch is '-x', not '-s'. X-Git-Tag: v2.4a1~1701 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4651f53949b929f33a63e74232da1b26fe4a8d70;p=python Fix typo in docstring: The switch is '-x', not '-s'. Will backport to 2.3 myself. --- diff --git a/Lib/compileall.py b/Lib/compileall.py index ebe04ff460..f906c80eef 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"