Changeset - 7baea802f739
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 12 years ago 2013-07-28 19:14:57
marcin@python-works.com
fixes issue #884 Pull Request fails when setting the lang=ja
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/changeset_status.py
Show inline comments
 
@@ -129,13 +129,13 @@ class ChangesetStatusModel(BaseModel):
 
        repo = self._get_repo(repo)
 

	
 
        q = ChangesetStatus.query()
 
        if not comment:
 
            from rhodecode.model.comment import ChangesetCommentsModel
 
            comment = ChangesetCommentsModel().create(
 
                text='Auto status change to %s' % (ChangesetStatus.get_status_lbl(status)),
 
                text=u'Auto status change to %s' % (ChangesetStatus.get_status_lbl(status)),
 
                repo=repo,
 
                user=user,
 
                pull_request=pull_request,
 
                send_email=False
 
            )
 
        if revision:
0 comments (0 inline, 0 general)