From: Thomas Heller Date: Wed, 27 Aug 2003 20:21:06 +0000 (+0000) Subject: Fix typo in docstring: The switch is '-x', not '-s'. X-Git-Tag: v2.3.1~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60eaed1cdf4514421ed230ff07d9fa06b93416ff;p=thirdparty%2FPython%2Fcpython.git Fix typo in docstring: The switch is '-x', not '-s'. --- diff --git a/Lib/compileall.py b/Lib/compileall.py index ebe04ff46027..f906c80eefe1 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"