diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-14 12:11:49 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-14 12:11:49 +0700 |
commit | dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c (patch) | |
tree | 2f1a5c1365313dbe185c598194d2f9cafda7e6ee /setuptools/tests/test_packageindex.py | |
parent | 10866a525737842b090d83ccaf6d7aceb092f069 (diff) | |
download | external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.gz external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.bz2 external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.zip |
Fix missing whitespace around operator.
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 61f5909b..dda55382 100644 --- a/setuptools/tests/test_packageindex.py +++ b/setuptools/tests/test_packageindex.py @@ -129,7 +129,7 @@ class TestPackageIndex: # the distribution has been found assert 'foobar' in pi # we have only one link, because links are compared without md5 - assert len(pi['foobar'])==1 + assert len(pi['foobar']) == 1 # the link should be from the index assert 'correct_md5' in pi['foobar'][0].location |