diff -r 744cd0b4b8cd -r 01f04fbc1842 DebugClients/Python/coverage/xmlreport.py --- a/DebugClients/Python/coverage/xmlreport.py Thu Jan 07 13:42:51 2010 +0000 +++ b/DebugClients/Python/coverage/xmlreport.py Thu Jan 07 13:50:32 2010 +0000 @@ -3,9 +3,9 @@ import os, sys, time import xml.dom.minidom -from coverage import __url__, __version__ -from coverage.backward import sorted # pylint: disable-msg=W0622 -from coverage.report import Reporter +from . import __url__, __version__ +from .backward import sorted # pylint: disable-msg=W0622 +from .report import Reporter def rate(hit, num): """Return the fraction of `hit`/`num`.""" @@ -143,4 +143,4 @@ package[1] += class_hits package[2] += class_lines package[3] += class_branch_hits - package[4] += class_branches + package[4] += class_branches \ No newline at end of file