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

Authorization file format does not allow passwords that contain ";" #509

Closed
jartitodebuscarusuario opened this issue Dec 14, 2017 · 1 comment
Assignees
Labels
Milestone

Comments

@jartitodebuscarusuario
Copy link

Function read_auth_data in IM/auth.py uses split by ";" to parse auth data in authorization files, preventing the use of semicolon in passwords. As a suggest, maybe the only change needed is to split by "; " (semicolon + space) instead of splitting by semicolon.

Regards,

Andrés

@micafer micafer added this to the 1.6.6 milestone Dec 15, 2017
@micafer micafer self-assigned this Dec 15, 2017
@micafer
Copy link
Member

micafer commented Dec 15, 2017

Hi @jartitodebuscarusuario,

We have fixed this bug using quotes:

password = 'some;password'

See PR: #510

Regards.

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

No branches or pull requests

2 participants