From 29b422607f3083b9ffebba57fc255f45a20353f3 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 30 Aug 2015 11:16:34 -0400 Subject: Prefer preceding line comments --- setuptools/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 9e76ae11..9bbc06bb 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -135,7 +135,8 @@ class Command(_Command): vars(cmd).update(kw) return cmd -distutils.core.Command = Command # we can't patch distutils.cmd, alas +# we can't patch distutils.cmd, alas +distutils.core.Command = Command def findall(dir = os.curdir): """Find all files under 'dir' and return the list of full filenames @@ -150,4 +151,5 @@ def findall(dir = os.curdir): all_files.extend(filter(os.path.isfile, files)) return all_files -distutils.filelist.findall = findall # fix findall bug in distutils. +# fix findall bug in distutils. +distutils.filelist.findall = findall -- cgit v1.2.3