Last modified: 2014-11-04 23:28:07 UTC
With user-config.py -------------- family = 'wikipedia' mylang = 'en' usernames['wikipedia']['en'] = u'valhallasw' password_file = 'password' password -------- (u'valhallasw', 'topsecretpassword') The password is not used, as the username is u'Valhallasw' once LoginManager checks the password file. LoginManager should normalize the usernames in the password file. Workaround: Use (u'Valhallasw', 'topsecretpassword') in the password file.