fix missing space in warning message

This commit is contained in:
Joey Hess 2023-12-08 12:36:33 -04:00
parent 30c2728d65
commit b65379a107
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -449,7 +449,7 @@ checkSecureHashes' :: Key -> Annex Bool
checkSecureHashes' key = checkSecureHashes key >>= \case
Nothing -> return True
Just msg -> do
warning $ UnquotedString $ msg ++ "to annex objects"
warning $ UnquotedString $ msg ++ " to annex objects"
return False
data LinkAnnexResult = LinkAnnexOk | LinkAnnexFailed | LinkAnnexNoop