Skip to content

Commit

Permalink
Remove debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldoussoren committed Apr 3, 2022
1 parent aa56a19 commit 032de04
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions py2app/recipes/setuptools.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import pkg_resources, zipimport, os
def find_eggs_in_zip(importer, path_item, only=False):
print(f"override", path_item)
if importer.archive.endswith('.whl'):
# wheels are not supported with this finder
# they don't have PKG-INFO metadata, and won't ever contain eggs
Expand All @@ -27,7 +26,6 @@ def find_eggs_in_zip(importer, path_item, only=False):
for dist in dists:
yield dist
elif subitem.lower().endswith(('.dist-info', '.egg-info')):
print(f"nested", path_item)
subpath = os.path.join(path_item, subitem)
submeta = pkg_resources.EggMetadata(zipimport.zipimporter(subpath))
submeta.egg_info = subpath
Expand Down

0 comments on commit 032de04

Please sign in to comment.