add list of not-submitted bugs
[utils.git] / src / budget_sync / main.py
index 6d587a2d44abd766898c6ce1d943a86655401980..b4c35c93e44f17e8be88a5ab49b31ec24fb84a61 100644 (file)
@@ -71,6 +71,9 @@ def summarize_milestones(budget_graph: BudgetGraph):
         print(f"{milestone.identifier}")
         print(f"\t{summary.total} submitted: "
               f"{summary.total_submitted} paid: {summary.total_paid}")
+        not_submitted = summary.get_not_submitted()
+        if not_submitted:
+            print ("not submitted", not_submitted)
 
         # and one to display people
         for person in budget_graph.milestone_people[milestone]: