From eba97108699a39fd0c61fcdc9029fb9037131d34 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Tue, 24 Sep 2024 01:51:54 -0700 Subject: [PATCH] note imported tag --- pv2/importer/operation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pv2/importer/operation.py b/pv2/importer/operation.py index decc9c0..57cf20e 100644 --- a/pv2/importer/operation.py +++ b/pv2/importer/operation.py @@ -912,6 +912,7 @@ class GitImport(Import): ref = gitutil.tag(dest_repo, import_tag, commit_msg) gitutil.push(dest_repo, ref=ref) self.perform_cleanup([source_git_repo_path, dest_git_repo_path]) + print(f'Imported: {import_tag}') return True print('Nothing to push') self.perform_cleanup([source_git_repo_path, dest_git_repo_path])