fix build with old versions of bytestring

This commit is contained in:
Joey Hess 2014-06-06 14:04:35 -04:00
parent c03f192a4b
commit 2f84659d51

View file

@ -293,7 +293,7 @@ writeUUIDFile c u = do
either s3Error return =<< liftIO (sendObject conn object)
file = filePrefix c ++ "annex-uuid"
uuidb = L.fromStrict $ T.encodeUtf8 $ T.pack $ fromUUID u
uuidb = L.fromChunks [T.encodeUtf8 $ T.pack $ fromUUID u]
bucket = fromJust $ getBucket c
mkobject = S3Object bucket file "" (getXheaders c)