diff options
Diffstat (limited to 'Demo/scripts')
-rw-r--r-- | Demo/scripts/toaiff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/scripts/toaiff.py b/Demo/scripts/toaiff.py index 5794859..0e9be23 100644 --- a/Demo/scripts/toaiff.py +++ b/Demo/scripts/toaiff.py @@ -89,8 +89,8 @@ def _toaiff(filename, temps): ftype = ftype[0] # All we're interested in except IOError as msg: if type(msg) == type(()) and len(msg) == 2 and \ - type(msg[0]) == type(0) and type(msg[1]) == type(''): - msg = msg[1] + type(msg.args[0]) == type(0) and type(msg.args[1]) == type(''): + msg = msg.args[1] if type(msg) != type(''): msg = repr(msg) raise error(filename + ': ' + msg) |