Added macostools.touch() calls to inform the finder of our changes.
diff --git a/Mac/scripts/FixCreator.py b/Mac/scripts/FixCreator.py
index f5213d0..b5b3a26 100644
--- a/Mac/scripts/FixCreator.py
+++ b/Mac/scripts/FixCreator.py
@@ -5,6 +5,7 @@
 import os
 import macfs
 import sys
+import macostools
 
 OLD='PYTH'
 NEW='Pyth'
@@ -15,6 +16,7 @@
 		cur_cr, cur_tp = fs.GetCreatorType()
 		if cur_cr == OLD:
 			fs.SetCreatorType(NEW, cur_tp)
+			macostools.touched(fs)
 			print 'Fixed ', name
 	elif os.path.isdir(name):
 		print '->', name