project-installcheck: Fix syntax error

This commit is contained in:
Stephan Kulow 2022-03-29 08:18:16 +02:00
parent 53f00a2b26
commit cc1b2e9d6d

View File

@ -77,7 +77,7 @@ class RepoChecker():
if comment.get('package') in comments:
continue
self.logger.info("Removing comment for package {}".format(comment.get('package')))
url = makeurl(self.apiurl, [comment, comment.get('id')])
url = makeurl(self.apiurl, ['comment', comment.get('id')])
http_DELETE(url)
commentapi = CommentAPI(self.apiurl)