diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-15 22:13:59 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-09-15 22:13:59 (GMT) |
commit | 29a3355ab96a7df76adaf676e695821232d4ac5a (patch) | |
tree | 80ccbffd6912eb67906063763054781d8c2c88d8 /Mac/scripts/FixCreator.py | |
parent | 57d53a90d92e83f7d3a72d5c775be9f52aa0d89c (diff) | |
download | cpython-29a3355ab96a7df76adaf676e695821232d4ac5a.zip cpython-29a3355ab96a7df76adaf676e695821232d4ac5a.tar.gz cpython-29a3355ab96a7df76adaf676e695821232d4ac5a.tar.bz2 |
Added macostools.touch() calls to inform the finder of our changes.
Diffstat (limited to 'Mac/scripts/FixCreator.py')
-rw-r--r-- | Mac/scripts/FixCreator.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 @@ def walktree(name, change): 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 |