commit | d11b68ab0834be4be76fca479cd4426eb45dfaec | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jan 06 21:13:42 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jan 06 21:13:42 2008 +0000 |
tree | bc05f1c9ac1e0460d2f30531fcb31ab09084979e | |
parent | 7357c23ee72d687433452555018e9931159a2dfa [diff] [blame] |
Fix more exception slicing.
diff --git a/Lib/plat-mac/aetools.py b/Lib/plat-mac/aetools.py index dd06e3e..7ba5074 100644 --- a/Lib/plat-mac/aetools.py +++ b/Lib/plat-mac/aetools.py
@@ -86,7 +86,7 @@ try: desc = ae.AEGetAttributeDesc(key, '****') except (AE.Error, MacOS.Error) as msg: - if msg[0] != -1701 and msg[0] != -1704: + if msg.args[0] not in (-1701, -1704): raise continue attributes[key] = unpack(desc, formodulename)