summaryrefslogtreecommitdiff
path: root/Remote
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-06-06 14:04:35 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-06-06 14:04:35 -0400
commitd6a47f1d30219492c14773c1b69ea285ee404614 (patch)
tree067cf53051e3b0635257bdb2d237f5d63559fc66 /Remote
parent8981155eac9ca182a9e8a0039c75de16739a6e24 (diff)
fix build with old versions of bytestring
Diffstat (limited to 'Remote')
-rw-r--r--Remote/S3.hs2
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)