summaryrefslogtreecommitdiff
path: root/Tools/scripts/linktree.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/linktree.py
parent6c542b731cfe3e17991643bfc41bb785331e7e5c (diff)
downloadcpython-git-e236b38731823aeb87bb6d101062f54a72044954.tar.gz
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/linktree.py')
-rwxr-xr-xTools/scripts/linktree.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/linktree.py b/Tools/scripts/linktree.py
index 502873eca2..995f2efa9e 100755
--- a/Tools/scripts/linktree.py
+++ b/Tools/scripts/linktree.py
@@ -76,4 +76,5 @@ def linknames(old, new, link):
else:
os.symlink(linkname, newname)
-sys.exit(main())
+if __name__ == '__main__':
+ sys.exit(main())