From 33e66d17a95966bb6c2ea8c62a447a13c9f1b81a Mon Sep 17 00:00:00 2001 From: zelonght Date: Wed, 9 May 2018 21:58:28 +0700 Subject: [PATCH] Update error for requirement of S3BackEnd --- git-fat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-fat b/git-fat index 8b88054..2ed592b 100755 --- a/git-fat +++ b/git-fat @@ -146,7 +146,7 @@ except ImportError: class S3Backend(object): def __init__(self,bucket,key,secret,objdir): - raise RuntimeError("S3Backend requires boto.") + raise RuntimeError("S3Backend requires boto and filechunkio.") BLOCK_SIZE = 4096 LARGE_FILE_SIZE = 4294967296 # consider > 4GBs is large file size(Current limitation in windows)