diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-02-28 20:08:45 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-03-01 09:08:45 +0800 |
commit | 22f7aa6e9c24b8c8b79901e4edf8590935ded93e (patch) | |
tree | 42f355647cb90e66dc2df9cc53f07ffcfd692a23 /models/pull.go | |
parent | e83c8afc56c028bddba5074fb945cb0b7c45d32b (diff) | |
download | gitea-22f7aa6e9c24b8c8b79901e4edf8590935ded93e.tar.gz gitea-22f7aa6e9c24b8c8b79901e4edf8590935ded93e.zip |
LableIDs -> LabelIDs (#1088)
Diffstat (limited to 'models/pull.go')
-rw-r--r-- | models/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go index 29730ba7e0..822822411a 100644 --- a/models/pull.go +++ b/models/pull.go @@ -600,7 +600,7 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str if err = newIssue(sess, pull.Poster, NewIssueOptions{ Repo: repo, Issue: pull, - LableIDs: labelIDs, + LabelIDs: labelIDs, Attachments: uuids, IsPull: true, }); err != nil { |