summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-10-09 23:18:21 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-10-09 23:18:21 (GMT)
commit703e2c153b95cd0b63788036ae803fd1862ac223 (patch)
tree1f97092e3076bbb979fc05c3bd38458ab61288f2
parent316ba5d2dae38e62f97c7f0f778b73eef6b8437c (diff)
downloadcpython-703e2c153b95cd0b63788036ae803fd1862ac223.zip
cpython-703e2c153b95cd0b63788036ae803fd1862ac223.tar.gz
cpython-703e2c153b95cd0b63788036ae803fd1862ac223.tar.bz2
Changed CW signature and fixed .as/.hqx creator/type
-rw-r--r--Mac/scripts/fixfiletypes.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/scripts/fixfiletypes.py b/Mac/scripts/fixfiletypes.py
index 1d1b115..455f7e3 100644
--- a/Mac/scripts/fixfiletypes.py
+++ b/Mac/scripts/fixfiletypes.py
@@ -14,10 +14,10 @@ import sys
list = [
('.py', 'PYTH', 'TEXT'),
('.pyc', 'PYTH', 'PYC '),
- ('.c', 'MPCC', 'TEXT'),
- ('.h', 'MPCC', 'TEXT'),
- ('.as', 'TEXT', 'ToyS'),
- ('.hqx', 'TEXT', 'BnHq')
+ ('.c', 'CWIE', 'TEXT'),
+ ('.h', 'CWIE', 'TEXT'),
+ ('.as', 'ToyS', 'TEXT'),
+ ('.hqx', 'BnHq', 'TEXT')
]
def walktree(name, change):