From 6ba79e2aafb8aaa5dd4226e3133428369ae97bad Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Tue, 27 Jun 2023 19:09:11 -0700 Subject: [PATCH] hotfix: add print statement for debugging --- importer/operation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/importer/operation.py b/importer/operation.py index c2a2b44..3897fb4 100644 --- a/importer/operation.py +++ b/importer/operation.py @@ -185,6 +185,7 @@ class SrpmImport(Import): ref_check = f'refs/heads/{branch}' in check_repo # if our check is correct, clone it. if not, clone normally and # orphan. + print(f'Cloning: {self.rpm_name}') if ref_check: repo = gitutil.clone( git_url_path=self.git_url,