From 8fd0f147e74138b8046ba42c083e61e24dfecad2 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 20 Oct 1998 15:33:33 +0000 Subject: [PATCH] Detlef Lannert lannert@lannert.rz.uni-duesseldorf.de notices: """ the NEWS file of Python 1.5.2a2 inspired me to look at Tools/scripts/untabify.py. I wonder why it accepts a -t argument but ignores it. The following patch tries to make it somewhat useful (i.e., to override the tabsize=8 setting). Is that agreeable? """ --- Tools/scripts/untabify.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Tools/scripts/untabify.py b/Tools/scripts/untabify.py index 1f74973ad7a..7be9f38420b 100755 --- a/Tools/scripts/untabify.py +++ b/Tools/scripts/untabify.py @@ -15,8 +15,11 @@ def main(): raise getopt.error, "At least one file argument required" except getopt.error, msg: print msg - print "usage:", sys.argv[0], "file ..." + print "usage:", sys.argv[0], "[-t tabwidth] file ..." return + for optname, optvalue in opts: + if optname == '-t': + tabsize = int(optvalue) for file in args: process(file, tabsize)