summaryrefslogtreecommitdiff
path: root/coverage/inorout.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-05-01 22:38:55 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-05-02 07:38:20 -0400
commit6a3d3aaaf2aebb816c7287263c8097844280b233 (patch)
tree675124a02ef673e60ed4be951334beb17afd9489 /coverage/inorout.py
parent3f19cd70ee61e126e1577302234bc23145a86dcf (diff)
downloadpython-coveragepy-git-6a3d3aaaf2aebb816c7287263c8097844280b233.tar.gz
refactor: move exceptions to their own module
Diffstat (limited to 'coverage/inorout.py')
-rw-r--r--coverage/inorout.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/inorout.py b/coverage/inorout.py
index b46162ee..fae9ef18 100644
--- a/coverage/inorout.py
+++ b/coverage/inorout.py
@@ -15,9 +15,9 @@ import traceback
from coverage import env
from coverage.disposition import FileDisposition, disposition_init
+from coverage.exceptions import CoverageException
from coverage.files import TreeMatcher, FnmatchMatcher, ModuleMatcher
from coverage.files import prep_patterns, find_python_files, canonical_filename
-from coverage.misc import CoverageException
from coverage.python import source_for_file, source_for_morf