diff options
Diffstat (limited to 'Mac/Lib/toolbox/aetools.py')
-rw-r--r-- | Mac/Lib/toolbox/aetools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/toolbox/aetools.py b/Mac/Lib/toolbox/aetools.py index e91449a..bb0d20f 100644 --- a/Mac/Lib/toolbox/aetools.py +++ b/Mac/Lib/toolbox/aetools.py @@ -68,7 +68,7 @@ def pack(x, forcetype = None): if t == DictionaryType: record = AE.AECreateList('', 1) for key, value in x.items(): - record.AEPutKeyDesc(key, pack(value)) + record.AEPutParamDesc(key, pack(value)) return record if t == InstanceType and hasattr(x, '__aepack__'): return x.__aepack__() |