diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-26 09:50:40 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-26 09:50:40 -0400 |
commit | 88bb798a68c1d16a34c4091f1a07d594b5c3c037 (patch) | |
tree | 7f39c7c1fb1f3cb125eed6178f446cf0a5ec7e23 /coverage/xmlreport.py | |
parent | 48075edf4de2020b23ef6f32fc8f523b48abb93b (diff) | |
download | python-coveragepy-git-88bb798a68c1d16a34c4091f1a07d594b5c3c037.tar.gz |
lint cleanup
Diffstat (limited to 'coverage/xmlreport.py')
-rw-r--r-- | coverage/xmlreport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/xmlreport.py b/coverage/xmlreport.py index 3f6473a1..9898e7e1 100644 --- a/coverage/xmlreport.py +++ b/coverage/xmlreport.py @@ -80,7 +80,7 @@ class XmlReporter(Reporter): # Use the DOM to write the output file. outfile.write(self.xml_out.toprettyxml()) - def xml_file(self, cu, statements, excluded, missing): + def xml_file(self, cu, statements, excluded_unused, missing): """Add to the XML report for a single file.""" # Create the 'lines' and 'package' XML elements, which |