Skip to content

Commit fe67144

Browse files
author
emanuele-guidotti
committed
Fix #4
1 parent 6d8a38d commit fe67144

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: RblDataLicense
22
Type: Package
33
Title: R Interface to 'Bloomberg Data License'
4-
Version: 0.2.3
4+
Version: 0.2.4
55
Authors@R: person(given = "Emanuele",
66
family = "Guidotti",
77
email = "emanuele.guidotti@unine.ch",

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# RblDataLicense 0.2.4
2+
3+
- Updated default parameters in `RblConnect()`. See issue [#4](https://github.com/eguidotti/RblDataLicense/issues/4)
4+
15
# RblDataLicense 0.2.3
26

37
- Fix `RblDownload()` for Windows users

R/core.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#'
2525
#' @export
2626
#'
27-
RblConnect <- function(user, pw, host = 'dlsftp.bloomberg.com', port = '30206', protocol = 'sftp', verbose = TRUE) {
27+
RblConnect <- function(user, pw, host = 'sftp.bloomberg.com', port = '22', protocol = 'sftp', verbose = TRUE) {
2828

2929
# ftp://User:Password@FTPServer/Destination.html
3030
url <- paste0(protocol, '://', user, ':', pw, '@', host, ':', port)

man/RblConnect.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)