From 90aa3e2016b9e5e02f65dad32a09c83e875ed8a6 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Mon, 4 Mar 2024 17:06:59 -0700 Subject: [PATCH] add autochangelog logic --- pv2/importer/operation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pv2/importer/operation.py b/pv2/importer/operation.py index e7c9aad..3a4fc12 100644 --- a/pv2/importer/operation.py +++ b/pv2/importer/operation.py @@ -813,6 +813,7 @@ class GitImport(Import): # do rpm autochangelog logic here if HAS_RPMAUTOSPEC and os.path.exists(source_git_repo_changelog): # Check that the spec file really has %autochangelog + AUTOCHANGELOG = False for line in source_git_repo_spec: if re.search('^%autochangelog', line): print('autochangelog found')