figleaf_htmlizer: oops, re-ignore files that aren't under root, like code in auto-built eggs

This commit is contained in:
Brian Warner 2009-02-13 00:00:22 -07:00
parent 58da3792d1
commit aee319e236

View File

@ -98,6 +98,8 @@ class Renderer:
continue
if not k.startswith("/"):
continue
if root and not k.startswith(root):
continue
display_filename = self.make_display_filename(k)
info = self.process_file(k, display_filename, coverage)