From 89387ae5fbd1504235ff9044226f014b8ceb3677 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 4 Aug 2018 19:46:06 +0200 Subject: [PATCH] removed debug println & bumped version --> 0.2.1 --- Cargo.toml | 2 +- src/lib.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 174bd11..564ebea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Matthias Seitz "] name = "archiveis" -version = "0.2.0" +version = "0.2.1" license = "MIT OR Apache-2.0" documentation = "https://docs.rs/archiveis" repository = "https://github.com/mattsse/archiveis-rs" diff --git a/src/lib.rs b/src/lib.rs index d656a77..7bfeaed 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -213,7 +213,6 @@ impl ArchiveClient { let err_resp_handling = resp.into_body().concat2().map_err(|e|Error::Hyper(e)).and_then(move |ch| { if let Ok(html) = ::std::str::from_utf8(&ch) { if html.starts_with("

Server Error

") { - println!("here3"); return Box::new(self.capture(target_url.as_str())) as Box>; }