From d8d67f6ba38388aecbf66d791432d5cd3aa8db6e Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Sun, 24 Aug 2025 17:58:29 +0200 Subject: g2h: Add --content-subdir arg --- g2h/commit_page.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'g2h/commit_page.py') diff --git a/g2h/commit_page.py b/g2h/commit_page.py index 325df85..716a4f8 100644 --- a/g2h/commit_page.py +++ b/g2h/commit_page.py @@ -3,8 +3,8 @@ import os from .page import Page class CommitPage(Page): - def __init__(self, out_dir, name, commit): - super(CommitPage, self).__init__('commit.md', out_dir, os.path.join(commit.hexsha, 'index.md'), name) + def __init__(self, out_dir, name, commit, content_subdir): + super(CommitPage, self).__init__('commit.md', out_dir, os.path.join(commit.hexsha, 'index.md'), name, content_subdir) self.commit = commit def context(self): -- cgit v1.2.3