summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-05-07 15:50:56 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-05-07 15:50:56 (GMT)
commitc512be0bb22092269d1bcad35d8fd63c8b94ac5e (patch)
tree3de995c5e79086d4027cf4db68dd9469476cf3c6 /Mac
parent73d203fb43e3eaf548deee15e76e25db57518efb (diff)
downloadcpython-c512be0bb22092269d1bcad35d8fd63c8b94ac5e.zip
cpython-c512be0bb22092269d1bcad35d8fd63c8b94ac5e.tar.gz
cpython-c512be0bb22092269d1bcad35d8fd63c8b94ac5e.tar.bz2
Sometimes tried to modify a tuple. Fixed.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/scripts/cfmfile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Mac/scripts/cfmfile.py b/Mac/scripts/cfmfile.py
index b39d1bc..1a50a67 100644
--- a/Mac/scripts/cfmfile.py
+++ b/Mac/scripts/cfmfile.py
@@ -170,6 +170,7 @@ class CfmFile(ResourceCollection, FragmentResource):
def mergecfmfiles(inputs, output):
# Convert inputs/outputs to fsspecs
+ inputs = map(None, inputs)
for i in range(len(inputs)):
if type(inputs[i]) == type(''):
inputs[i] = macfs.FSSpec(inputs[i])