backport: fix trace.py --ignore-dir
This commit is contained in:
parent
d84f68b10f
commit
4a67a67416
|
@ -587,7 +587,7 @@ class Trace:
|
|||
"""
|
||||
if why == 'call':
|
||||
code = frame.f_code
|
||||
filename = code.co_filename
|
||||
filename = frame.f_globals.get('__file__', None)
|
||||
if filename:
|
||||
# XXX modname() doesn't work right for packages, so
|
||||
# the ignore support won't work right for packages
|
||||
|
|
Loading…
Reference in New Issue