diff options
Diffstat (limited to 'Utility/ExternalSHA.hs')
-rw-r--r-- | Utility/ExternalSHA.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/ExternalSHA.hs b/Utility/ExternalSHA.hs index 595acd8cf..858d04e6a 100644 --- a/Utility/ExternalSHA.hs +++ b/Utility/ExternalSHA.hs @@ -57,7 +57,7 @@ externalSHA command shasize file = do Left $ "Unexpected character in output of " ++ command ++ "\"" ++ sha ++ "\"" | otherwise = Right sha' where - sha' = map toLower sha + sha' = map toLower sha expectedSHALength :: Int -> Int expectedSHALength 1 = 40 |