Skip to content

Commit

Permalink
Merge branch 'feature/cli' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Aug 4, 2018
2 parents e5cde9b + 89387ae commit e5a9a7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition 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]
authors = ["Matthias Seitz <[email protected]>"]
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"
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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("<h1>Server Error</h1>") {
println!("here3");
return Box::new(self.capture(target_url.as_str()))
as Box<Future<Item = Archived, Error = Error>>;
}
Expand Down

0 comments on commit e5a9a7d

Please sign in to comment.