Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
joprice committed Dec 20, 2015
1 parent 9b3cd1a commit 475cc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl IssueListReq {
params.push(("since", s.to_owned()));
}
if !self.labels.is_empty() {
params.push(("labels", self.labels.connect(",")));
params.push(("labels", self.labels.join(",")));
}
form_urlencoded::serialize(params)
}
Expand Down

0 comments on commit 475cc72

Please sign in to comment.