diff options
Diffstat (limited to 'setuptools/package_index.py')
-rwxr-xr-x | setuptools/package_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 26d1d4ad..bc276a26 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -943,7 +943,7 @@ class PyPIConfig(ConfigParser.ConfigParser): Load from ~/.pypirc """ defaults = dict.fromkeys(['username', 'password', 'repository'], '') - super(PyPIConfig, self).__init__(defaults) + ConfigParser.ConfigParser.__init__(self, defaults) rc = os.path.join(os.path.expanduser('~'), '.pypirc') if os.path.exists(rc): |