summaryrefslogtreecommitdiff
path: root/setuptools/command/install_lib.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-03-07 16:50:43 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-03-07 16:50:43 -0500
commit278e027348f52fc0dfc7ac6046fd169632922bb1 (patch)
treeab7a3b10c25421a3a040b0fa2c163e4fa380767f /setuptools/command/install_lib.py
parentc5958f26680b8bfad10d0ec03a613725c9a4c580 (diff)
parent25edd1951d8d44c34578c926f5c20ed3d452587b (diff)
downloadpython-setuptools-git-278e027348f52fc0dfc7ac6046fd169632922bb1.tar.gz
Merge branch 'master' into patch-1
Diffstat (limited to 'setuptools/command/install_lib.py')
-rw-r--r--setuptools/command/install_lib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py
index 07d65933..2e9d8757 100644
--- a/setuptools/command/install_lib.py
+++ b/setuptools/command/install_lib.py
@@ -77,7 +77,8 @@ class install_lib(orig.install_lib):
if not hasattr(sys, 'implementation'):
return
- base = os.path.join('__pycache__', '__init__.' + sys.implementation.cache_tag)
+ base = os.path.join(
+ '__pycache__', '__init__.' + sys.implementation.cache_tag)
yield base + '.pyc'
yield base + '.pyo'
yield base + '.opt-1.pyc'