Skip to content

Commit 0e4d07f

Browse files
committed
remove stray dbg macro usage
1 parent a9dc7a7 commit 0e4d07f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/async_impl/request.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ impl RequestBuilder {
179179
Some(password) => format!("{}:{}", username, password),
180180
None => format!("{}:", username)
181181
};
182-
let header_value = format!("Basic {}", encode(&dbg!(auth)));
182+
let header_value = format!("Basic {}", encode(&auth));
183183
self.header(::header::AUTHORIZATION, &*header_value)
184184
}
185185

0 commit comments

Comments
 (0)