aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/Crypto/Macaroon/Internal.hs2
1 files changed, 1 insertions, 1 deletions
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
58 show (MkMacaroon l i c s) = intercalate "\n" [ 58 show (MkMacaroon l i c s) = intercalate "\n" [
59 "location " ++ B8.unpack l 59 "location " ++ B8.unpack l
60 , "identifier " ++ B8.unpack i 60 , "identifier " ++ B8.unpack i
61 , concatMap show c 61 , intercalate "\n" (map show c)
62 , "signature " ++ B8.unpack (hex s) 62 , "signature " ++ B8.unpack (hex s)
63 ] 63 ]
64 64