Comment 7 for bug 1445930

Revision history for this message
Raphaƫl F. (rflores) wrote :

As mentioned by the return statement, escaping % with a second % is OK.
So instead of:
my_password_with_a_%_which_is_not_parsed_correctly
Use:
my_password_with_a_%%_which_is_not_parsed_correctly

The password can be escaped.