diff options
Diffstat (limited to 'Lib/trace.py')
-rwxr-xr-x | Lib/trace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 41eff26..f108266 100755 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -305,7 +305,7 @@ class CoverageResults: if self.is_ignored_filename(filename): continue - if filename.endswith((".pyc", ".pyo")): + if filename.endswith(".pyc"): filename = filename[:-1] if coverdir is None: |