From: Julien Tanguy Date: Fri, 15 May 2015 16:17:13 +0000 (+0200) Subject: Add newlines between Caveats in Macaroon's show X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=b7889567b811ac347acff9983d15ab0e91c76876;p=github%2Ffretlink%2Fhmacaroons.git Add newlines between Caveats in Macaroon's show [ci skip] --- diff --git a/src/Crypto/Macaroon/Internal.hs b/src/Crypto/Macaroon/Internal.hs index 116f5ed..2f56512 100644 --- a/src/Crypto/Macaroon/Internal.hs +++ b/src/Crypto/Macaroon/Internal.hs @@ -58,7 +58,7 @@ instance Show Macaroon where show (MkMacaroon l i c s) = intercalate "\n" [ "location " ++ B8.unpack l , "identifier " ++ B8.unpack i - , concatMap show c + , intercalate "\n" (map show c) , "signature " ++ B8.unpack (hex s) ]