Skip to content

Commit

Permalink
show: ignore dependency source when finding package
Browse files Browse the repository at this point in the history
Resolves: #3116
  • Loading branch information
abn authored and finswimmer committed Oct 13, 2020
1 parent 38fddf0 commit 50e0628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/console/commands/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def handle(self):
table = self.table(style="compact")
# table.style.line_vc_char = ""
locked_packages = locked_repo.packages
pool = Pool()
pool = Pool(ignore_repository_names=True)
pool.add_repository(locked_repo)
solver = Solver(
self.poetry.package,
Expand Down

0 comments on commit 50e0628

Please sign in to comment.