chore(rustup): fix std::env changes

This commit is contained in:
Sean McArthur
2015-02-13 11:19:19 -08:00
parent 2afa96c923
commit db83e0490b
2 changed files with 3 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
#![feature(env, os, io)]
#![feature(env, io)]
extern crate hyper;
use std::env;
@@ -16,17 +16,9 @@ fn main() {
}
};
let url = match url.to_str() {
Some(url) => url,
None => {
println!("Url contains invalid unicode");
return;
}
};
let mut client = Client::new();
let mut res = match client.get(url).send() {
let mut res = match client.get(&*url).send() {
Ok(res) => res,
Err(err) => panic!("Failed to connect: {:?}", err)
};