diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 07:25:25 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 07:25:25 +0000 |
commit | 392c6fc02d90f211dadc72448a07d9281260cb70 (patch) | |
tree | 8cc4d563ee077ef83612a67a02ce36f5c2397d37 /Lib/idlelib/configHandler.py | |
parent | 995ee9dab0a89b139e08a55fc64a60aaddc0d5c0 (diff) | |
download | cpython-git-392c6fc02d90f211dadc72448a07d9281260cb70.tar.gz |
ConfigParser renaming reversal part 3: move module into place and adapt imports.
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r-- | Lib/idlelib/configHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index bdce85d36c..3fc2a606fe 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -21,7 +21,7 @@ import os import sys import string import macosxSupport -from configparser import ConfigParser, NoOptionError, NoSectionError +from ConfigParser import ConfigParser, NoOptionError, NoSectionError class InvalidConfigType(Exception): pass class InvalidConfigSet(Exception): pass |