summaryrefslogtreecommitdiff
path: root/coverage/backunittest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 07:30:07 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 07:30:07 -0500
commit737f8ffa024563fb8315f94cdf1484aa7bdb6eaa (patch)
tree4f509ac85244bdb4b251b1134257e0eadb020f62 /coverage/backunittest.py
parentdf5b3c800fdf4a2eef373196b1f0a166279a3566 (diff)
parentd0a872c92e0e8c6ebb9530c2b61f2b9582612fb4 (diff)
downloadpython-coveragepy-737f8ffa024563fb8315f94cdf1484aa7bdb6eaa.tar.gz
Merged pull request 43: --skip-covered
Diffstat (limited to 'coverage/backunittest.py')
-rw-r--r--coverage/backunittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/backunittest.py b/coverage/backunittest.py
index b2b7ca2..648e74e 100644
--- a/coverage/backunittest.py
+++ b/coverage/backunittest.py
@@ -3,7 +3,7 @@
# Use unittest2 if it's available, otherwise unittest. This gives us
# backported features for 2.6.
try:
- import unittest2 as unittest # pylint: disable=F0401
+ import unittest2 as unittest
except ImportError:
import unittest