diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-29 13:27:46 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-29 13:27:46 (GMT) |
commit | 5a8115c94b02bab70437f9eac53464c56e32bfd2 (patch) | |
tree | 1161baa334b014a575664645149b3dc25fe9b03c /Mac/Lib | |
parent | 13735e3e3e69aa1adc5d1f9001216d8c151a8d4d (diff) | |
download | cpython-5a8115c94b02bab70437f9eac53464c56e32bfd2.zip cpython-5a8115c94b02bab70437f9eac53464c56e32bfd2.tar.gz cpython-5a8115c94b02bab70437f9eac53464c56e32bfd2.tar.bz2 |
Ported the icglue module to carbon.
Diffstat (limited to 'Mac/Lib')
-rw-r--r-- | Mac/Lib/ic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Lib/ic.py b/Mac/Lib/ic.py index 47091c7..5756463 100644 --- a/Mac/Lib/ic.py +++ b/Mac/Lib/ic.py @@ -162,7 +162,8 @@ class IC: self.ic = ic else: self.ic = icglue.ICStart(signature) - self.ic.ICFindConfigFile() + if hasattr(self.ic, 'ICFindConfigFile'): + self.ic.ICFindConfigFile() self.h = Res.Resource('') def keys(self): |