Skip to content
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

Auth example not valid JSON #1

Closed
johnhaggkvist opened this issue Feb 12, 2013 · 0 comments
Closed

Auth example not valid JSON #1

johnhaggkvist opened this issue Feb 12, 2013 · 0 comments

Comments

@johnhaggkvist
Copy link

The example for the .ftppass auth file:
{
'key1': {
'username': 'username1',
'password': 'password1'
},
'key2': {
'username': 'username2',
'password': 'password2'
}
}

Does not work in my setup as the parser expects valid JSON. Changing the quotes worked:
{
"key1": {
"username": "username1",
"password": "password1"
},
"key2": {
"username": "username2",
"password": "password2"
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants