From 39bf3155d47c0024240be414a611dcb6d549f53c Mon Sep 17 00:00:00 2001 From: stepshal Date: Thu, 21 Jul 2016 09:37:34 +0700 Subject: Add missing blank lines after class or function definition. --- setuptools/py27compat.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setuptools/py27compat.py') 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) -- cgit v1.2.3