From 574aed16bfab1c5966af36ed6345d16ef119ac64 Mon Sep 17 00:00:00 2001 From: Yonatan Goldschmidt Date: Mon, 1 Feb 2021 17:46:38 +0200 Subject: [PATCH] Fix typo in Lib/trace.py (GH-24309) --- Lib/trace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/trace.py b/Lib/trace.py index c505d8bc72a..2cf3643878d 100755 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -116,7 +116,7 @@ class _Ignore: return 0 def _modname(path): - """Return a plausible module name for the patch.""" + """Return a plausible module name for the path.""" base = os.path.basename(path) filename, ext = os.path.splitext(base)