Skip to content

Commit

Permalink
Merge pull request #73 from rtyley/fix-issue-labels-setter
Browse files Browse the repository at this point in the history
Fix GHIssue.setLabels()
  • Loading branch information
kohsuke committed Mar 28, 2014
2 parents 6272226 + 893152c commit 2941c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GHIssue.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void assignTo(GHUser user) throws IOException {
}

public void setLabels(String... labels) throws IOException {
edit("assignee",labels);
edit("labels",labels);
}

/**
Expand Down

0 comments on commit 2941c44

Please sign in to comment.