From 4651f53949b929f33a63e74232da1b26fe4a8d70 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Wed, 27 Aug 2003 20:19:35 +0000 Subject: [PATCH] Fix typo in docstring: The switch is '-x', not '-s'. Will backport to 2.3 myself. --- Lib/compileall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/compileall.py b/Lib/compileall.py index ebe04ff4602..f906c80eefe 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"