From 53cc6d4a5f4ed2d360b934bd40ab0ec3c7b03963 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Mon, 4 Dec 2023 13:27:04 -0800 Subject: [PATCH] main.py: fix broken printf format specifier from 4e4a4694d2 --- src/budget_sync/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index d646556..b76e6af 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -184,7 +184,7 @@ def json_milestones(budget_graph: BudgetGraph, add_comments: bool, comments = bugzilla.get_comments(cur_need)['bugs'] if len(comments) < len(cur_need) and len(cur_need) > 1: step = max(1, step // 2) - print("failed, trying smaller step of %" % step, + print("failed, trying smaller step of %d" % step, flush=True, file=term) continue bug_comments_map.update(comments) -- 2.30.2