From 60eaed1cdf4514421ed230ff07d9fa06b93416ff Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Wed, 27 Aug 2003 20:21:06 +0000 Subject: [PATCH] Fix typo in docstring: The switch is '-x', not '-s'. --- Lib/compileall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.47.3