summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coverage/codeunit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/codeunit.py b/coverage/codeunit.py
index 2b581d0d..2bd97fee 100644
--- a/coverage/codeunit.py
+++ b/coverage/codeunit.py
@@ -54,7 +54,7 @@ class CodeUnit(object):
# .pyc files should always refer to a .py instead.
if f.endswith('.pyc') or f.endswith('.pyo'):
f = f[:-1]
- elif f.endswith('$py.class'): # jython
+ elif f.endswith('$py.class'): # Jython
f = f[:-9] + ".py"
self.filename = self.file_locator.canonical_filename(f)