diff options
author | 2014-06-06 14:04:35 -0400 | |
---|---|---|
committer | 2014-06-06 14:04:35 -0400 | |
commit | d6a47f1d30219492c14773c1b69ea285ee404614 (patch) | |
tree | 067cf53051e3b0635257bdb2d237f5d63559fc66 /Remote | |
parent | 8981155eac9ca182a9e8a0039c75de16739a6e24 (diff) |
fix build with old versions of bytestring
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/S3.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/S3.hs b/Remote/S3.hs index 796800a7b..c883e2a5b 100644 --- a/Remote/S3.hs +++ b/Remote/S3.hs @@ -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) |