diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-20 11:13:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-20 11:13:16 -0400 |
| commit | add487b9f51571a85bc7597ac3835d29bc5c2504 (patch) | |
| tree | 5a25cf299c6c383b2c6b4d8e514f6cfc0f384030 /setuptools/py31compat.py | |
| parent | 80a2ff9e3055e216a5238e81a6933f6a342b17fb (diff) | |
| parent | dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c (diff) | |
| download | python-setuptools-git-add487b9f51571a85bc7597ac3835d29bc5c2504.tar.gz | |
Merge pull request #635 from stepshal/operators
Fix missing whitespace around operator.
Diffstat (limited to 'setuptools/py31compat.py')
| -rw-r--r-- | setuptools/py31compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/py31compat.py b/setuptools/py31compat.py index 04a314ef..414b377b 100644 --- a/setuptools/py31compat.py +++ b/setuptools/py31compat.py @@ -12,7 +12,7 @@ except ImportError: def get_path(name): if name not in ('platlib', 'purelib'): raise ValueError("Name must be purelib or platlib") - return get_python_lib(name=='platlib') + return get_python_lib(name == 'platlib') try: # Python >=3.2 |
