diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-23 22:03:26 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-23 22:03:26 -0500 |
commit | bc25fb0a51e1e3f8e395d5723311a748649ac7da (patch) | |
tree | e90b33ad7180f3d2ca65c1e2f7c8b10666447660 | |
parent | 40c37c04c11840bf85652af5b0128a1ee7bd69de (diff) | |
download | python-coveragepy-git-bc25fb0a51e1e3f8e395d5723311a748649ac7da.tar.gz |
Change one bit.
-rw-r--r-- | coverage/codeunit.py | 2 |
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) |