diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-02 10:18:57 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-05-02 10:18:57 -0400 |
commit | 0d3a896695ae028eca50330490f6ea2811450e0e (patch) | |
tree | c02922ceec23d215c44d7bbc1f119595cba22192 /setuptools/py27compat.py | |
parent | 30837057ae74a38e29b67c62adb8e6d5be44b97c (diff) | |
download | external_python_setuptools-0d3a896695ae028eca50330490f6ea2811450e0e.tar.gz external_python_setuptools-0d3a896695ae028eca50330490f6ea2811450e0e.tar.bz2 external_python_setuptools-0d3a896695ae028eca50330490f6ea2811450e0e.zip |
Convert tabs to spaces. Fixes #489.
Diffstat (limited to 'setuptools/py27compat.py')
-rw-r--r-- | setuptools/py27compat.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/setuptools/py27compat.py b/setuptools/py27compat.py index 9d2886db..702f7d65 100644 --- a/setuptools/py27compat.py +++ b/setuptools/py27compat.py @@ -5,11 +5,11 @@ Compatibility Support for Python 2.7 and earlier import sys def get_all_headers(message, key): - """ - Given an HTTPMessage, return all headers matching a given key. - """ - return message.get_all(key) + """ + Given an HTTPMessage, return all headers matching a given key. + """ + return message.get_all(key) if sys.version_info < (3,): - def get_all_headers(message, key): - return message.getheaders(key) + def get_all_headers(message, key): + return message.getheaders(key) |