diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-08-24 17:58:29 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-08-24 18:17:07 +0200 |
| commit | d8d67f6ba38388aecbf66d791432d5cd3aa8db6e (patch) | |
| tree | 1cf1c79460d80addcc3e7dcf43b6ae2ad42cacca /g2h/log_page.py | |
| parent | b921db2d6504cee332cf54346dd1c81d034d3acf (diff) | |
| download | git2hugo-d8d67f6ba38388aecbf66d791432d5cd3aa8db6e.tar.gz | |
g2h: Add --content-subdir arg
Diffstat (limited to 'g2h/log_page.py')
| -rw-r--r-- | g2h/log_page.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g2h/log_page.py b/g2h/log_page.py index 684a758..9a3d64f 100644 --- a/g2h/log_page.py +++ b/g2h/log_page.py @@ -13,8 +13,8 @@ def ref_names_for_commit(refs, commit_sha): return ref_names class LogPage(Page): - def __init__(self, out_dir, name, commits, branches, tags): - super(LogPage, self).__init__('log.md', out_dir, 'l.md', name) + def __init__(self, out_dir, name, commits, branches, tags, content_subdir): + super(LogPage, self).__init__('log.md', out_dir, 'l.md', name, content_subdir) self.commits = commits self.branches = branches self.tags = tags |