From: Ian Jackson Date: Tue, 1 Jun 2021 17:38:30 +0000 (+0100) Subject: InternalError from anyhow: Add a missing colon to the messages X-Git-Tag: otter-0.7.0~135 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c171bfea13321805e5c8b7301dc641773e23a884;p=otter.git InternalError from anyhow: Add a missing colon to the messages Signed-off-by: Ian Jackson --- diff --git a/src/error.rs b/src/error.rs index 12942a8a..4d5cc202 100644 --- a/src/error.rs +++ b/src/error.rs @@ -52,7 +52,7 @@ pub enum InternalError { StringFormatting(#[from] fmt::Error), #[error("JSON deserialisation error: {0:?}")] JSONEncode(serde_json::Error), - #[error("Server error {0:?}")] + #[error("Server error: {0:?}")] Anyhow(#[from] anyhow::Error), #[error("Game contains only partial data for player, or account missing")] PartialPlayerData,