Skip to content

Commit

Permalink
Fix #4
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuele-guidotti committed Jul 29, 2021
1 parent 6d8a38d commit fe67144
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: RblDataLicense
Type: Package
Title: R Interface to 'Bloomberg Data License'
Version: 0.2.3
Version: 0.2.4
Authors@R: person(given = "Emanuele",
family = "Guidotti",
email = "emanuele.guidotti@unine.ch",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# RblDataLicense 0.2.4

- Updated default parameters in `RblConnect()`. See issue [#4](https://github.com/eguidotti/RblDataLicense/issues/4)

# RblDataLicense 0.2.3

- Fix `RblDownload()` for Windows users
Expand Down
2 changes: 1 addition & 1 deletion R/core.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#'
#' @export
#'
RblConnect <- function(user, pw, host = 'dlsftp.bloomberg.com', port = '30206', protocol = 'sftp', verbose = TRUE) {
RblConnect <- function(user, pw, host = 'sftp.bloomberg.com', port = '22', protocol = 'sftp', verbose = TRUE) {

# ftp://User:Password@FTPServer/Destination.html
url <- paste0(protocol, '://', user, ':', pw, '@', host, ':', port)
Expand Down
4 changes: 2 additions & 2 deletions man/RblConnect.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fe67144

Please sign in to comment.