diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-14 05:31:46 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-14 05:31:46 -0500 |
commit | 80adba1cb4b07f6d182c907b5c5f796eb7b6b93d (patch) | |
tree | 5f3e50bcb64cbc8dabb3d66cab27d0e79e1dd4d6 /setuptools/tests/test_packageindex.py | |
parent | ca4321bb5833e2daa7bee1a32a3dee37cb49f012 (diff) | |
download | python-setuptools-git-80adba1cb4b07f6d182c907b5c5f796eb7b6b93d.tar.gz |
Use SafeConfigParser in PyPIConfig file. Allows percent signs to be specified using two percent signs. Fixes #442.
Diffstat (limited to 'setuptools/tests/test_packageindex.py')
-rw-r--r-- | setuptools/tests/test_packageindex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_packageindex.py b/setuptools/tests/test_packageindex.py index 746860d5..a3e45adc 100644 --- a/setuptools/tests/test_packageindex.py +++ b/setuptools/tests/test_packageindex.py @@ -216,7 +216,7 @@ class TestPyPIConfig: [pypi] repository=https://pypi.python.org username=jaraco - password=pity% + password=pity%% """)) cfg = setuptools.package_index.PyPIConfig() cred = cfg.creds_by_repository['https://pypi.python.org'] |