summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py
index c4022f1f..08d21959 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -870,7 +870,7 @@ class Coverage(object):
# Mega debugging...
-if int(os.environ.get("COVERAGE_DEBUG_CALLS", 0)):
+if int(os.environ.get("COVERAGE_DEBUG_CALLS", 0)): # pragma: debugging
from coverage.debug import decorate_methods, show_calls
Coverage = decorate_methods(show_calls(show_args=True), butnot=['get_data'])(Coverage)