diff options
| author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-06-20 22:55:16 +0100 |
|---|---|---|
| committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-06-20 22:55:16 +0100 |
| commit | c7b3bccdaab158c5f29ddb13b92e8d9d1b4c7bdb (patch) | |
| tree | 7278078a7c40860f75ee3e8459a19e367bd57d6a /setuptools/command/setopt.py | |
| parent | 063908790dd9ca90fb4e08811d1f3b764b8d7a6d (diff) | |
| download | python-setuptools-bitbucket-c7b3bccdaab158c5f29ddb13b92e8d9d1b4c7bdb.tar.gz | |
Changes to support 2.x and 3.x in the same codebase.
Diffstat (limited to 'setuptools/command/setopt.py')
| -rwxr-xr-x | setuptools/command/setopt.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/setopt.py b/setuptools/command/setopt.py index dbf3a94e..aa468c88 100755 --- a/setuptools/command/setopt.py +++ b/setuptools/command/setopt.py @@ -47,9 +47,9 @@ def edit_config(filename, settings, dry_run=False): while a dictionary lists settings to be changed or deleted in that section. A setting of ``None`` means to delete that setting. """ - from ConfigParser import RawConfigParser + from setuptools.compat import ConfigParser log.debug("Reading configuration from %s", filename) - opts = RawConfigParser() + opts = ConfigParser.RawConfigParser() opts.read([filename]) for section, options in settings.items(): if options is None: |
