Skip to content

Commit

Permalink
Bump to 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed May 12, 2015
1 parent b15834b commit 7c17dca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "oauth2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
version = "0.1.8"
version = "0.1.9"
license = "MIT/Apache-2.0"
description = "Bindings for exchanging OAuth 2 tokens"
repository = "https://github.com/alexcrichton/oauth2-rs"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl Config {
let mut form = &form[..];

let result = try!(http::handle()
.post(&self.token_url.to_string(), &mut form)
.post(&self.token_url.to_string()[..], &mut form)
.header("Content-Type",
"application/x-www-form-urlencoded")
.exec()
Expand Down

0 comments on commit 7c17dca

Please sign in to comment.