diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-09 03:14:08 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-12-09 03:14:08 -0500 |
commit | 3744e23d533ab5b0ebcb34f6d8792777c3433014 (patch) | |
tree | 8b5b354484a8a25f6c08d610db2aa4f5a3d94c0c /setuptools/command/build_py.py | |
parent | 4e960934f61c50b98953d6cd12b72b30e85bccf3 (diff) | |
download | external_python_setuptools-3744e23d533ab5b0ebcb34f6d8792777c3433014.tar.gz external_python_setuptools-3744e23d533ab5b0ebcb34f6d8792777c3433014.tar.bz2 external_python_setuptools-3744e23d533ab5b0ebcb34f6d8792777c3433014.zip |
Reindent to remove trailing comment
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index 3ae331fd..55aed230 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -197,8 +197,12 @@ class build_py(orig.build_py, Mixin2to3): ) seen = {} return [ - f for f in files if f not in bad - and f not in seen and seen.setdefault(f, 1) # ditch dupes + fn + for fn in files + if fn not in bad + # ditch dupes + and fn not in seen + and seen.setdefault(fn, 1) ] |