diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1999-01-21 13:34:26 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1999-01-21 13:34:26 (GMT) |
commit | a0fcd2580039d33f659bdcf26e62398d957b6c8c (patch) | |
tree | f705233ad4155d47069a03b217aab9b726889699 /Mac | |
parent | d9f5a39ef3c6f14c5b15d64049474a2b914a80d4 (diff) | |
download | cpython-a0fcd2580039d33f659bdcf26e62398d957b6c8c.zip cpython-a0fcd2580039d33f659bdcf26e62398d957b6c8c.tar.gz cpython-a0fcd2580039d33f659bdcf26e62398d957b6c8c.tar.bz2 |
Don't qualify local symbols with aetools...
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Lib/lib-toolbox/aetools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/lib-toolbox/aetools.py b/Mac/Lib/lib-toolbox/aetools.py index 5a8d314..dde82b5 100644 --- a/Mac/Lib/lib-toolbox/aetools.py +++ b/Mac/Lib/lib-toolbox/aetools.py @@ -220,7 +220,7 @@ class _miniFinder(TalkTo): _reply, _arguments, _attributes = self.send(_code, _subcode, _arguments, _attributes) if _arguments.has_key('errn'): - raise aetools.Error, aetools.decodeerror(_arguments) + raise Error, decodeerror(_arguments) # XXXX Optionally decode result if _arguments.has_key('----'): return _arguments['----'] |