From b8cc62c7a96abe758ebb2e65c636b2f51f581dff Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 09 2018 07:15:47 +0000 Subject: Fixup a logging call Signed-off-by: Pierre-Yves Chibon --- diff --git a/pagure/lib/tasks.py b/pagure/lib/tasks.py index 1059032..89913b2 100644 --- a/pagure/lib/tasks.py +++ b/pagure/lib/tasks.py @@ -907,7 +907,9 @@ def update_pull_request(self, session, pr_uid): repopath = parentpath if repo_from: repopath = pagure.utils.get_repo_path(repo_from) - _log.debug(" working on the repo in: %s and", repopath, parentpath) + _log.debug( + " working on the repo in: %s and %s", repopath, parentpath + ) repo_obj = pygit2.Repository(repopath) orig_repo = pygit2.Repository(parentpath)