зеркало из https://github.com/Azure/AzureStor.git
rm printed double slash
This commit is contained in:
Родитель
2cd0998c4b
Коммит
2dbe553c10
|
@ -49,7 +49,7 @@ blob_container.blob_endpoint <- function(endpoint, name)
|
|||
print.blob_container <- function(object, ...)
|
||||
{
|
||||
cat("Azure blob container '", object$name, "'\n", sep="")
|
||||
cat(sprintf("URL: %s\n", file.path(object$endpoint$url, object$name)))
|
||||
cat(sprintf("URL: %s\n", paste0(object$endpoint$url, object$name)))
|
||||
if(!is_empty(object$endpoint$key))
|
||||
cat("Access key: <hidden>\n")
|
||||
else cat("Access key: <none supplied>\n")
|
||||
|
|
|
@ -47,7 +47,7 @@ file_share.file_endpoint <- function(endpoint, name)
|
|||
print.file_share <- function(object, ...)
|
||||
{
|
||||
cat("Azure file share '", object$name, "'\n", sep="")
|
||||
cat(sprintf("URL: %s\n", file.path(object$endpoint$url, object$name)))
|
||||
cat(sprintf("URL: %s\n", paste0(object$endpoint$url, object$name)))
|
||||
if(!is_empty(object$endpoint$key))
|
||||
cat("Access key: <hidden>\n")
|
||||
else cat("Access key: <none supplied>\n")
|
||||
|
|
Загрузка…
Ссылка в новой задаче