fix typo in error message

This commit is contained in:
mpostma 2020-06-06 09:04:17 +02:00
parent f0822a86e1
commit 6fee7e638c
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ async fn get_update_status(
match status {
Some(status) => Ok(HttpResponse::Ok().json(status)),
None => Err(Error::NotFound(format!(
"Update {} not found",
"Update {}",
path.update_id
)).into()),
}