From e656e7b1851e50f62c72b75cb9743ac533a2f59e Mon Sep 17 00:00:00 2001 From: Yee <2520865+yixinglu@users.noreply.github.com> Date: Tue, 9 Nov 2021 17:42:12 +0800 Subject: [PATCH] Fix stupid error (#7) --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 45361c8..19377f2 100755 --- a/main.py +++ b/main.py @@ -98,6 +98,7 @@ def apply_patch(branch, comm_ci): print(f">>> Apply patch file to {branch}") stopped = False patch = f"{branch}.patch" + author = comm_ci.author() git.config("--local", "user.name", author.name) git.config("--local", "user.email", author.email) git.clean("-f")