unselect: Do not state we accepted the request, but give a better message

This commit is contained in:
Dominique Leuenberger 2016-02-10 11:01:07 +01:00
parent 64014193f6
commit 73c0050fbd

View File

@ -19,8 +19,8 @@ class UnselectCommand(object):
affected_projects.add(staging_project)
msg = 'Unselecting "{}" from "{}"'.format(request, staging_project)
print(msg)
self.api.rm_from_prj(staging_project, request_id=request)
self.api.add_review(request, by_group=self.api.cstaging_group, msg='Please recheck')
self.api.rm_from_prj(staging_project, request_id=request, msg='Removing from {}, re-evaluation needed'.format(staging_project))
self.api.add_review(request, by_group=self.api.cstaging_group, msg='Requesting new staging review')
# Notify everybody about the changes
for prj in affected_projects: