New binhexer
diff --git a/Mac/scripts/binhextree.py b/Mac/scripts/binhextree.py
index 6512de7..accc2ac 100644
--- a/Mac/scripts/binhextree.py
+++ b/Mac/scripts/binhextree.py
@@ -118,7 +118,11 @@
 	]
 
 def walker(arg, top, names):
-	for n in names:
+	lnames = names[:]
+	for n in lnames:
+		if n[0] == '(' and n[-1] == ')':
+			names.remove(n)
+			continue
 		for ext, handler in extensions:
 			if n[-len(ext):] == ext:
 				name = os.path.join(top, n)