From 548a3f8bfbcf9176930392c024073bf5661df508 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 23 Nov 2012 22:03:26 -0500 Subject: Change one bit. --- coverage/codeunit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/codeunit.py') diff --git a/coverage/codeunit.py b/coverage/codeunit.py index 2b581d0..2bd97fe 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) -- cgit v1.2.1