diff options
author | Chris Rose <chrisros@amazon.com> | 2014-02-19 19:59:44 -0800 |
---|---|---|
committer | Chris Rose <chrisros@amazon.com> | 2014-02-19 19:59:44 -0800 |
commit | 4e1a87c430f9776fa0d4f0a1655f052a097859cd (patch) | |
tree | e29ac7678afc2ad11d2805e856717c3a4870f56c /coverage/control.py | |
parent | 0f2dc90a1143f3579cd145fefda24f4d19ff6b83 (diff) | |
download | python-coveragepy-git-4e1a87c430f9776fa0d4f0a1655f052a097859cd.tar.gz |
Clean up the comment on the xmlreport fix
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/coverage/control.py b/coverage/control.py index 5c126b65..38c6cb4f 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -692,11 +692,10 @@ class coverage(object): if self.config.xml_output == '-': outfile = sys.stdout else: - # ensure that the output directory is created; done here - # because this report pre-opens the output - # file. HTMLReport does this using the Report plumbing - # because its task is more complex, being multiple - # files. + # Ensure that the output directory is created; done here + # because this report pre-opens the output file. + # HTMLReport does this using the Report plumbing because + # its task is more complex, being multiple files. output_dir = os.path.dirname(self.config.xml_output) if output_dir and not os.path.isdir(output_dir): os.makedirs(output_dir) |