From 83ba578738ffd7d805f78d462641ca84ed930424 Mon Sep 17 00:00:00 2001 From: joeprinold <35369456+joeprinold@users.noreply.github.com> Date: Wed, 6 Feb 2019 11:20:03 +0000 Subject: [PATCH] Remove gdata dependancy --- R/aws_helper_functions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/aws_helper_functions.R b/R/aws_helper_functions.R index 2c29d84..361fb83 100644 --- a/R/aws_helper_functions.R +++ b/R/aws_helper_functions.R @@ -43,7 +43,7 @@ list_files_in_buckets <- function(bucket_filter=NULL, prefix=NULL, path_only=FAL cols_to_keep <- c("Key", "LastModified","ETag","Size","StorageClass","Bucket") af <- af[, cols_to_keep] - af["size_readable"] <- gdata::humanReadable(as.double(af$Size)) + af["size_readable"] <- humanReadable(as.double(af$Size)) af["path"] = paste(af$Bucket, af$Key, sep = "/")