Skip to content

Commit

Permalink
error description return in push
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Apr 30, 2023
1 parent 152925c commit 5f16cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/push.rs
Expand Up @@ -224,7 +224,7 @@ pub fn push_raw(
"unexpected status code {} while pushing to {} {}",
response.status(),
push_url,
response.text().map(|text| format!("with body {}", text)).unwrap_or_default()
response.text().map(|text| format!("with body `{}`", text)).unwrap_or_default()
))),
}
}
Expand Down

0 comments on commit 5f16cc5

Please sign in to comment.