Skip to content

Commit

Permalink
Fix display of actual hash in verified download
Browse files Browse the repository at this point in the history
  • Loading branch information
mgsloan committed Aug 7, 2017
1 parent 7f5a63d commit 7ff5bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Network/HTTP/Download/Verified.hs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ instance Show VerifiedDownloadException where
show (WrongDigest req algo expected actual) =
"Download expectation failure: content hash (" ++ algo ++ ")\n"
++ "Expected: " ++ displayCheckHexDigest expected ++ "\n"
++ "Actual: " ++ show actual ++ "\n"
++ "Actual: " ++ actual ++ "\n"
++ "For: " ++ show (getUri req)

instance Exception VerifiedDownloadException
Expand Down

0 comments on commit 7ff5bd1

Please sign in to comment.