summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/logmerge.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 (GMT)
commite236b38731823aeb87bb6d101062f54a72044954 (patch)
tree6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/logmerge.py
parent6c542b731cfe3e17991643bfc41bb785331e7e5c (diff)
downloadcpython-e236b38731823aeb87bb6d101062f54a72044954.zip
cpython-e236b38731823aeb87bb6d101062f54a72044954.tar.gz
cpython-e236b38731823aeb87bb6d101062f54a72044954.tar.bz2
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/logmerge.py')
-rwxr-xr-xTools/scripts/logmerge.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/Tools/scripts/logmerge.py b/Tools/scripts/logmerge.py
index 54d1676..edfec2c 100755
--- a/Tools/scripts/logmerge.py
+++ b/Tools/scripts/logmerge.py
@@ -177,8 +177,9 @@ def format_output(database):
prev.append((date, working_file, rev, author))
prevtext = text
-try:
- main()
-except IOError, e:
- if e.errno != errno.EPIPE:
- raise
+if __name__ == '__main__':
+ try:
+ main()
+ except IOError, e:
+ if e.errno != errno.EPIPE:
+ raise