diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-11 23:47:28 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-11 23:47:28 -0500 |
commit | 5367a7399762a9098ea689c7cdcb54fb9748dd66 (patch) | |
tree | 6bc8d62b0468c64e1811c7b24729018aaa45429e /setuptools/command/__init__.py | |
parent | 0975916c1436759b5e373733561142caf708def4 (diff) | |
download | external_python_setuptools-5367a7399762a9098ea689c7cdcb54fb9748dd66.tar.gz external_python_setuptools-5367a7399762a9098ea689c7cdcb54fb9748dd66.tar.bz2 external_python_setuptools-5367a7399762a9098ea689c7cdcb54fb9748dd66.zip |
Override upload command to load passwords from keyring when available and not otherwise specified.20.1
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r-- | setuptools/command/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py index f6dbc39c..3fb2f6df 100644 --- a/setuptools/command/__init__.py +++ b/setuptools/command/__init__.py @@ -2,7 +2,7 @@ __all__ = [ 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop', 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts', 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts', - 'register', 'bdist_wininst', 'upload_docs', + 'register', 'bdist_wininst', 'upload_docs', 'upload', ] from distutils.command.bdist import bdist |