Commit 29b42260 authored by Jason R. Coombs's avatar Jason R. Coombs

Prefer preceding line comments

parent 028ae1a5
...@@ -135,7 +135,8 @@ class Command(_Command): ...@@ -135,7 +135,8 @@ class Command(_Command):
vars(cmd).update(kw) vars(cmd).update(kw)
return cmd 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): def findall(dir = os.curdir):
"""Find all files under 'dir' and return the list of full filenames """Find all files under 'dir' and return the list of full filenames
...@@ -150,4 +151,5 @@ def findall(dir = os.curdir): ...@@ -150,4 +151,5 @@ def findall(dir = os.curdir):
all_files.extend(filter(os.path.isfile, files)) all_files.extend(filter(os.path.isfile, files))
return all_files return all_files
distutils.filelist.findall = findall # fix findall bug in distutils. # fix findall bug in distutils.
distutils.filelist.findall = findall
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment