summaryrefslogtreecommitdiff
path: root/Tools/scripts/gprof2html.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 +0000
commite236b38731823aeb87bb6d101062f54a72044954 (patch)
tree6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/gprof2html.py
parent6c542b731cfe3e17991643bfc41bb785331e7e5c (diff)
downloadcpython-git-e236b38731823aeb87bb6d101062f54a72044954.tar.gz
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/gprof2html.py')
-rwxr-xr-xTools/scripts/gprof2html.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/gprof2html.py b/Tools/scripts/gprof2html.py
index aa13d52462..cb01c2ce68 100755
--- a/Tools/scripts/gprof2html.py
+++ b/Tools/scripts/gprof2html.py
@@ -75,4 +75,5 @@ def main():
output.close()
webbrowser.open("file:" + os.path.abspath(outputfilename))
-main()
+if __name__ == '__main__':
+ main()