formatted

This commit is contained in:
James Wykeham-Martin 2018-02-02 10:43:20 +00:00
parent 5e7d8841af
commit 7a0e7708be

View File

@ -51,8 +51,11 @@ fn download_into(
attempt.follow()
}
});
let client = reqwest::Client::builder().redirect(policy).referer(false).build()?;
let client = reqwest::Client::builder()
.redirect(policy)
.referer(false)
.build()?;
let mut resp = client.get(url).send()?;
info!("Status Resp: {}", resp.status());