diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-21 09:37:34 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-21 09:37:34 +0700 |
commit | 39bf3155d47c0024240be414a611dcb6d549f53c (patch) | |
tree | 373f653d4aec874e2aa3b2a9bc7c77f8526ceb89 /setuptools/py27compat.py | |
parent | 966e2fa4118277ed4551aa2215ac6ebac34b37e5 (diff) | |
download | external_python_setuptools-39bf3155d47c0024240be414a611dcb6d549f53c.tar.gz external_python_setuptools-39bf3155d47c0024240be414a611dcb6d549f53c.tar.bz2 external_python_setuptools-39bf3155d47c0024240be414a611dcb6d549f53c.zip |
Add missing blank lines after class or function definition.
Diffstat (limited to 'setuptools/py27compat.py')
-rw-r--r-- | setuptools/py27compat.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/py27compat.py b/setuptools/py27compat.py index 66aecc2a..57eb150b 100644 --- a/setuptools/py27compat.py +++ b/setuptools/py27compat.py @@ -11,6 +11,7 @@ def get_all_headers(message, key): """ return message.get_all(key) + if sys.version_info < (3,): def get_all_headers(message, key): return message.getheaders(key) |