From c171bfea13321805e5c8b7301dc641773e23a884 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 1 Jun 2021 18:38:30 +0100 Subject: [PATCH] InternalError from anyhow: Add a missing colon to the messages Signed-off-by: Ian Jackson --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.30.2