check_source: fix crash AttributeError: 'CheckSource' object has no attribute 'review_message'

An old typo, that was introduced in an attempt to support scm synced PRs
This commit is contained in:
Dominique Leuenberger 2024-06-17 09:12:40 +02:00
parent 9d63fee9d5
commit 706a18f577
Signed by untrusted user: dimstar
GPG Key ID: 14C1CBBAC1E4B014

View File

@ -180,11 +180,11 @@ class CheckSource(ReviewBot.ReviewBot):
scm_pool_repository = f"https://src.opensuse.org/pool/{source_package}" scm_pool_repository = f"https://src.opensuse.org/pool/{source_package}"
if not scm_sync.text.startswith(scm_pool_repository): if not scm_sync.text.startswith(scm_pool_repository):
# devel project uses scm sync not from the trusted src location # devel project uses scm sync not from the trusted src location
self.review_message['declined'] = f"Expected a devel project scm sync from {scm_pool_repository}" self.review_messages['declined'] = f"Expected a devel project scm sync from {scm_pool_repository}"
return False return False
if not self.source_is_scm_staging_submission(source_project): if not self.source_is_scm_staging_submission(source_project):
# Not a submission coming from the scm-sync bot # Not a submission coming from the scm-sync bot
self.review_message['declined'] = "Expected a submitrequest coming from scm-sync project" self.review_messages['declined'] = "Expected a submitrequest coming from scm-sync project"
return False return False
else: else: