diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-05-15 20:06:51 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-05-15 20:06:51 (GMT) |
commit | e00aeccf2e545313061720062354797e102d859e (patch) | |
tree | 4b912be442de93756e72f6abf18fb8f57309f5c5 | |
parent | c91210c06b6ba5126879b34692ef6291252f68ad (diff) | |
download | cpython-e00aeccf2e545313061720062354797e102d859e.zip cpython-e00aeccf2e545313061720062354797e102d859e.tar.gz cpython-e00aeccf2e545313061720062354797e102d859e.tar.bz2 |
Use lowercase version of module name
-rw-r--r-- | Lib/distutils/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index cf54769..e9ba402 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -5,7 +5,7 @@ that uses .pypirc in the distutils.command package. """ import os import sys -from ConfigParser import ConfigParser +from configparser import ConfigParser from distutils.core import Command |