diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-21 15:00:03 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-21 15:00:03 -0400 |
commit | 512565ee5090b8c1b685102c9ffb6195c99e32c2 (patch) | |
tree | 19f40d1b504670cd4d6efe826275dea83c414b1c /setuptools/command/build_py.py | |
parent | ee4d0dd1c0bd4c3efb6d2b933c2027e88917bfd1 (diff) | |
download | python-setuptools-git-512565ee5090b8c1b685102c9ffb6195c99e32c2.tar.gz |
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index 6fc0a4e4..bac4fb1c 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -120,7 +120,8 @@ class build_py(orig.build_py, Mixin2to3): target = os.path.join(build_dir, filename) self.mkpath(os.path.dirname(target)) srcfile = os.path.join(src_dir, filename) - outf, copied = self.copy_file(srcfile, target, preserve_mode=False) + outf, copied = self.copy_file( + srcfile, target, preserve_mode=False) srcfile = os.path.abspath(srcfile) if (copied and srcfile in self.distribution.convert_2to3_doctests): |