changeset 5105:14d75d4b03cd

pullrequests: don't add automatic 'status change' message - it will be added in template
author Mads Kiilerich <madski@unity3d.com>
date Thu, 07 May 2015 16:26:40 +0200
parents bacbf8936d5b
children 293066605a43
files kallithea/model/pull_request.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/model/pull_request.py	Thu May 07 16:26:40 2015 +0200
+++ b/kallithea/model/pull_request.py	Thu May 07 16:26:40 2015 +0200
@@ -93,7 +93,7 @@
         #reset state to under-review
         from kallithea.model.comment import ChangesetCommentsModel
         comment = ChangesetCommentsModel().create(
-            text=u'Auto status change to %s' % (ChangesetStatus.get_status_lbl(ChangesetStatus.STATUS_UNDER_REVIEW)),
+            text=u'',
             repo=org_repo,
             user=new.author,
             pull_request=new,