Skip to content

Commit

Permalink
fixed last commit. forgot a save
Browse files Browse the repository at this point in the history
  • Loading branch information
buhtz committed Jan 1, 2024
1 parent f32a208 commit 0793cff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pydoctor/templatewriter/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ def writeSummaryPages(self, system: model.System) -> None:
x = list(root_module_path.parent.glob('*'))
print(f'TTTT\n{root_module_path=} {x=}')
print(f'{root_module_path.exists()=}')
# os.link(
# src=root_module_path, # original
# dst=root_module_path.parent / 'index.html' # the hardlink
# )
os.link(
src=root_module_path, # original
dst=root_module_path.parent / 'index.html' # the hardlink
)

def _writeDocsFor(self, ob: model.Documentable) -> None:
if not ob.isVisible:
Expand Down

0 comments on commit 0793cff

Please sign in to comment.