diff options
Diffstat (limited to 'coverage/python.py')
-rw-r--r-- | coverage/python.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/python.py b/coverage/python.py index 59e6346..0d2fb3b 100644 --- a/coverage/python.py +++ b/coverage/python.py @@ -165,8 +165,8 @@ class PythonFileReporter(FileReporter): def exit_counts(self): return self.parser.exit_counts() - def arc_destination_description(self, lineno): - return self.parser.arc_destination_description(lineno) + def missing_arc_description(self, start, end): + return self.parser.missing_arc_description(start, end) @contract(returns='unicode') def source(self): |