diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-08-22 21:30:53 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-08-22 21:30:53 -0400 |
commit | da16957f1b15a3b4b960a11f7d6d36448630c978 (patch) | |
tree | 1b800ef1aa804602fe1c076a055fa9e1afc3c9a7 /tests/modules/plugins/another.py | |
parent | 5c88838a8cfb53dac3d63b272ea137f7a4f09f87 (diff) | |
download | python-coveragepy-git-da16957f1b15a3b4b960a11f7d6d36448630c978.tar.gz |
Make CoveragePlugin importable from coverage
Diffstat (limited to 'tests/modules/plugins/another.py')
-rw-r--r-- | tests/modules/plugins/another.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/plugins/another.py b/tests/modules/plugins/another.py index 93ac4854..2ff84dac 100644 --- a/tests/modules/plugins/another.py +++ b/tests/modules/plugins/another.py @@ -1,6 +1,6 @@ """A plugin for tests to reference.""" -from coverage.plugin import CoveragePlugin +from coverage import CoveragePlugin class Plugin(CoveragePlugin): pass |