From: Jack Jansen Date: Wed, 7 May 1997 15:50:56 +0000 (+0000) Subject: Sometimes tried to modify a tuple. Fixed. X-Git-Tag: v1.5a1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c512be0bb22092269d1bcad35d8fd63c8b94ac5e;p=python Sometimes tried to modify a tuple. Fixed. --- diff --git a/Mac/scripts/cfmfile.py b/Mac/scripts/cfmfile.py index b39d1bcaad..1a50a67701 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])