summaryrefslogtreecommitdiffstats
path: root/g2h/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'g2h/cli.py')
-rw-r--r--g2h/cli.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/g2h/cli.py b/g2h/cli.py
index 1391ec2..3d7028e 100644
--- a/g2h/cli.py
+++ b/g2h/cli.py
@@ -28,6 +28,8 @@ def main():
factory = PageFactory(args.out_dir, project_name)
factory.new_overview(branches, tags).render()
factory.new_log(commits, branches, tags).render()
+ for commit in commits:
+ factory.new_commit(commit).render()
if __name__ == '__main__':
main()