-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix deprecations #84
Fix deprecations #84
Conversation
@femtocleaner, you're back! |
Bad bot. Context is important: MethodError: no method matching mkdir(::FTP; mode="test_dir") |
yeah for some reason it thinks the 2nd arg should be the mode, but that is incorrect. |
@@ -145,7 +145,7 @@ end | |||
ftp = FTP(; opts...) | |||
local_file = upload_file | |||
server_dir = joinpath(HOMEDIR, testdir) | |||
mkdir(ftp, testdir) | |||
mkdir(ftp, mode=testdir) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bad bot
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry. I'm still new at this 🐒. I'll file an issue about this for you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Alex!
I'll close this. I'll be sure to make another PR for removing |
I fixed a number of deprecations for you