summaryrefslogtreecommitdiffstats
path: root/Lib/pstats.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r--Lib/pstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py
index 5bc70b3..b62aa98 100644
--- a/Lib/pstats.py
+++ b/Lib/pstats.py
@@ -477,7 +477,7 @@ class TupleComp:
def func_strip_path(func_name):
file, line, name = func_name
- return os.path.basename(file), line, name
+ return os.path.basename(file), line, name
def func_get_function_name(func):
return func[2]