# HG changeset patch # User Mads Kiilerich # Date 2015-05-07 16:26:40 # Node ID 14d75d4b03cd52c2ec6fe2cde26a6cbe5095d7cf # Parent bacbf8936d5baf726f71d2e6a68fedeb36ef002d pullrequests: don't add automatic 'status change' message - it will be added in template diff --git a/kallithea/model/pull_request.py b/kallithea/model/pull_request.py --- a/kallithea/model/pull_request.py +++ b/kallithea/model/pull_request.py @@ -93,7 +93,7 @@ class PullRequestModel(BaseModel): #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,