diff options
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r-- | Lib/idlelib/configHandler.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index 963cf95..98d6be7 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -19,8 +19,9 @@ configuration problem notification and resolution. """ import os import sys -import macosxSupport -from ConfigParser import ConfigParser, NoOptionError, NoSectionError + +from . import macosxSupport +from .ConfigParser import ConfigParser, NoOptionError, NoSectionError class InvalidConfigType(Exception): pass class InvalidConfigSet(Exception): pass |