diff options
Diffstat (limited to 'coverage/collector.py')
-rw-r--r-- | coverage/collector.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/collector.py b/coverage/collector.py index 3821de03..743a03e0 100644 --- a/coverage/collector.py +++ b/coverage/collector.py @@ -259,7 +259,8 @@ class Collector(object): fn = self._start_tracer() for args in traces0: - fn(*args) + (frame, event, arg), lineno = args + fn(frame, event, arg, lineno=lineno) # Install our installation tracer in threading, to jump start other # threads. |