Comment #5 on issue 3205 by [email protected]: Closing review request does
not add the optional submission text to the ChangeDescription python
instance.
http://code.google.com/p/reviewboard/issues/detail?id=3205
I could solved with the following:
...
post_save.connect(self._review_request_closed_cb,
sender=ChangeDescription)
def _review_request_closed_cb(self, sender, **kwargs):
latest = kwargs.get('instance')
review_request = None
result = ReviewRequest.objects.filter(status='S',
changedescs=latest)
if result is None or len(result) != 1:
return
review_request = result[0]
...
Thanks a lot for the help!
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"reviewboard-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.