Skip to content

Commit

Permalink
changes to fix issue microsoft#88
Browse files Browse the repository at this point in the history
Fixed default value for directory parameter in azureGetBlob
  • Loading branch information
algattik committed Jul 25, 2017
1 parent be1dbcd commit aa9f849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/AzureBlob.R
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ azureGetBlob <- function(azureActiveContext, blob, directory, type = "text",
if (missing(blob)) blob <- azureActiveContext$blob
if (missing(directory)) directory <- azureActiveContext$directory
} else {
if (missing(directory)) directory <- "/"
if (missing(directory)) directory <- ""
if (missing(container)) container <- ""
}

Expand Down

0 comments on commit aa9f849

Please sign in to comment.