From 1c1ede1cea33e154cb128d8572c8d937f314d57c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 31 Oct 2021 02:35:11 -0400 Subject: [PATCH] Use consistent tense in log messages --- bbuilder/lib/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbuilder/lib/worker.py b/bbuilder/lib/worker.py index 142303b..e63b797 100644 --- a/bbuilder/lib/worker.py +++ b/bbuilder/lib/worker.py @@ -157,7 +157,7 @@ def do_task(self, config, hooktype, request): os.chdir('repo') - print(f"Check out {ref}") + print(f"Checking out {ref}") os.system(f'git checkout {ref}') tasks = parse_config(event, event_action)