diff -r 744cd0b4b8cd -r 01f04fbc1842 DebugClients/Python/coverage/html.py --- a/DebugClients/Python/coverage/html.py Thu Jan 07 13:42:51 2010 +0000 +++ b/DebugClients/Python/coverage/html.py Thu Jan 07 13:50:32 2010 +0000 @@ -2,10 +2,10 @@ import os, re, shutil -from coverage import __url__, __version__ # pylint: disable-msg=W0611 -from coverage.phystokens import source_token_lines -from coverage.report import Reporter -from coverage.templite import Templite +from . import __url__, __version__ # pylint: disable-msg=W0611 +from .phystokens import source_token_lines +from .report import Reporter +from .templite import Templite # Disable pylint msg W0612, because a bunch of variables look unused, but # they're accessed in a templite context via locals(). @@ -179,4 +179,4 @@ """ html = re.sub(">\s+<p ", ">\n<p ", html) - return html + return html \ No newline at end of file