diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-05-07 15:50:56 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-05-07 15:50:56 (GMT) |
commit | c512be0bb22092269d1bcad35d8fd63c8b94ac5e (patch) | |
tree | 3de995c5e79086d4027cf4db68dd9469476cf3c6 /Mac | |
parent | 73d203fb43e3eaf548deee15e76e25db57518efb (diff) | |
download | cpython-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.py | 1 |
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]) |