For reasons I dare not explain, this script should always execute
main() when imported (in other words, it is not usable as a module).
diff --git a/Tools/scripts/dutree.py b/Tools/scripts/dutree.py
index 5912382..5e78d63 100755
--- a/Tools/scripts/dutree.py
+++ b/Tools/scripts/dutree.py
@@ -56,5 +56,4 @@
 		if d.has_key(key):
 			show(tsub, d[key][1], psub)
 
-if __name__ == "__main__":
-	main()
+main()