diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-09 17:27:55 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-09 17:27:55 +0000 |
commit | e236b38731823aeb87bb6d101062f54a72044954 (patch) | |
tree | 6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/methfix.py | |
parent | 6c542b731cfe3e17991643bfc41bb785331e7e5c (diff) | |
download | cpython-git-e236b38731823aeb87bb6d101062f54a72044954.tar.gz |
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/methfix.py')
-rwxr-xr-x | Tools/scripts/methfix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/methfix.py b/Tools/scripts/methfix.py index 9200d265a0..a872ab7395 100755 --- a/Tools/scripts/methfix.py +++ b/Tools/scripts/methfix.py @@ -167,5 +167,5 @@ def fixline(line): line = line[:a] + line[c:d] + line[b:] return line - -main() +if __name__ == '__main__': + main() |