Skip to content

Commit

Permalink
Merge pull request #15 from joprice/updateDeps
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
softprops committed Dec 20, 2015
2 parents a2536d4 + 475cc72 commit a53dc0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ keywords = ["hyper", "github"]
license = "MIT"

[dependencies]
hyper = "0.6"
hyper = "0.7"
rustc-serialize = "0.3"
url = "0.2"
url = "0.5.2"
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 a53dc0f

Please sign in to comment.