aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/py27compat.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-05-02 10:18:57 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-05-02 10:18:57 -0400
commit0d3a896695ae028eca50330490f6ea2811450e0e (patch)
treec02922ceec23d215c44d7bbc1f119595cba22192 /setuptools/py27compat.py
parent30837057ae74a38e29b67c62adb8e6d5be44b97c (diff)
downloadexternal_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.py12
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)