Skip to content

Commit

Permalink
remove stray dbg macro usage
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Dec 11, 2019
1 parent a9dc7a7 commit 0e4d07f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/async_impl/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ impl RequestBuilder {
Some(password) => format!("{}:{}", username, password),
None => format!("{}:", username)
};
let header_value = format!("Basic {}", encode(&dbg!(auth)));
let header_value = format!("Basic {}", encode(&auth));
self.header(::header::AUTHORIZATION, &*header_value)
}

Expand Down

0 comments on commit 0e4d07f

Please sign in to comment.