rephrase header to not imply bugs are completed when they just have payment info
authorJacob Lifshay <programmerjake@gmail.com>
Mon, 20 Jun 2022 03:22:28 +0000 (20:22 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Mon, 20 Jun 2022 03:22:28 +0000 (20:22 -0700)
src/budget_sync/write_budget_markdown.py

index f042ff042d2ca23174b654b535eef85cedcafdea..f98bf2c6fe8553c7925aa62ece41c0eb44c6fc36 100644 (file)
@@ -141,7 +141,7 @@ def _markdown_for_person(person: Person,
 
     for payee_state in PayeeState:
         if payee_state == PayeeState.NotYetSubmitted:
-            display_status_header = f"## Completed but not yet paid"
+            display_status_header = f"## Payment not yet submitted"
         elif payee_state == PayeeState.Submitted:
             display_status_header = f"## Submitted to NLNet but not yet paid"
         else: