Skip to content

Commit a6cef14

Browse files
committed
support all path
1 parent b0fa0a4 commit a6cef14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydumpling/pydumpling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def gen_tb_from_frame(f):
7272
f = f.f_back
7373
if f is None:
7474
return tb
75-
while f and "python" not in f.f_code.co_filename.lower():
75+
while f:
7676
tb = FakeTraceback()
7777
tb.tb_frame = FakeFrame(f)
7878
tb.tb_lasti = f.f_lasti

0 commit comments

Comments
 (0)