Skip to content

Commit 12fa135

Browse files
author
frostming
committed
let's see what's happening
1 parent e6b2f64 commit 12fa135

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pipenv/core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,12 +243,15 @@ def import_from_code(path="."):
243243
rs = []
244244
try:
245245
for r in pipreqs.get_all_imports(path, encoding="utf-8"):
246+
click.echo(r)
246247
if r not in BAD_PACKAGES:
247248
rs.append(r)
248249
pkg_names = pipreqs.get_pkg_names(rs)
249250
return [proper_case(r) for r in pkg_names]
250251

251252
except Exception:
253+
import traceback
254+
traceback.print_exc()
252255
return []
253256

254257

0 commit comments

Comments
 (0)