Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Pact/Repl.hs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ updateForOp i a = do
Output es -> forM_ es (outStrLn HErr . renderPrettyString RColor) >> return (Right a)
Print t -> do
let rep = case t of TLitString s -> unpack s
_ -> show t
_ -> showPretty t
outStrLn HOut rep
return (Right a)

Expand Down