From 11f4d993b5038a5799f44adbc3264951555af21b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 9 Jan 2019 13:12:25 -0400 Subject: [PATCH] fix format of show instance It's only used to show test suite failures.. --- Logs/Presence/Pure.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Logs/Presence/Pure.hs b/Logs/Presence/Pure.hs index 8bed7b6591..43306b5950 100644 --- a/Logs/Presence/Pure.hs +++ b/Logs/Presence/Pure.hs @@ -29,7 +29,7 @@ data LogLine = LogLine } deriving (Eq) instance Show LogLine where - show l = "LogLine " ++ formatVectorClock (date l) ++ show (status l) ++ " " ++ show (info l) + show l = "LogLine " ++ formatVectorClock (date l) ++ " " ++ show (status l) ++ " " ++ show (info l) data LogStatus = InfoPresent | InfoMissing | InfoDead deriving (Eq, Show, Bounded, Enum)