summaryrefslogtreecommitdiffstats
path: root/g2h/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'g2h/cli.py')
-rw-r--r--g2h/cli.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/g2h/cli.py b/g2h/cli.py
index b4c1c2b..52a2be7 100644
--- a/g2h/cli.py
+++ b/g2h/cli.py
@@ -31,6 +31,9 @@ def main():
factory.new_log(commits, branches, tags).render()
for commit in commits:
factory.new_commit(commit).render()
+ tree = factory.new_tree(commit, '', git.get_repo())
+ for tree_page in tree.build_pages(factory):
+ tree_page.render()
if __name__ == '__main__':
main()