# HG changeset patch # User osimons # Date 1251977732 0 # Node ID 3c1c52f5e8ad16474e0f52ed81511076247fc2bc # Parent 177d52932d03d41967081efd6d808255a93774ae 0.6dev: Fix for python:figleaf coverage annotation linking from Windows builds. diff --git a/bitten/build/pythontools.py b/bitten/build/pythontools.py --- a/bitten/build/pythontools.py +++ b/bitten/build/pythontools.py @@ -410,7 +410,7 @@ else: line_hits.append('0') module = xmlio.Element('coverage', name=modname, - file=filename, + file=filename.replace(os.sep, '/'), percentage=percentage, lines=len(interesting_lines), line_hits=' '.join(line_hits))