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 | f0291520ba9031e2924cf38d4d2a5e021bd84032 (patch) | |
tree | 0fbfacc77dfdc15c36a7c325f8f9c3713f8858b0 /coverage/xmlreport.py | |
parent | 89fb0a0d6950daa63947154e4d2593b71a6e61a7 (diff) | |
download | python-coveragepy-f0291520ba9031e2924cf38d4d2a5e021bd84032.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 3f6473a..9898e7e 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 |