After login: not enough arguments for format string
vpistis opened this issue · 3 comments
vpistis commented
GrahamTheCoder commented
Hi, I faced the same issue. It's because you're using python 3.8. The error shown is actually an error in formatting an error message. The root cause is actually an issue in defusedxml (which I could tell in debug mode locally with the full trace). I have successfully worked around this issue by updating defusedxml package from 0.5.0 to 0.6.0 in requirements.txt and then running
virtualenv --python=python3 ./env
./env/bin/pip install -r requirements.txt
Would be good to get this PRed, but obviously further testing may be required.
vpistis commented
wow!
you are right, changing defusedxml
version to 0.6.0 solves the error!
thank you!
dukebody commented
The PR above fixes this issue, if you want to merge it :)