We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Jan 14 13:14:03 roxanne.dragonfear stable-diffusion-webui[1682746]: ValueError: too many values to unpack (expected 2)
The routine in api.py is using auth.split(":")
It should be using auth.partition(":") to avoid double-splits.
Just run the thing with an API password that contains colons.
Should start normally.
No response
Doesn't matter. It's a code bug.
Above.
The text was updated successfully, but these errors were encountered:
sure, partition or str.split(':', maxsplit=1) but maybe it's better to just not use the second colon in your password
partition
str.split(':', maxsplit=1)
Sorry, something went wrong.
No branches or pull requests
Checklist
What happened?
The routine in api.py is using auth.split(":")
It should be using auth.partition(":") to avoid double-splits.
Steps to reproduce the problem
Just run the thing with an API password that contains colons.
What should have happened?
Should start normally.
What browsers do you use to access the UI ?
No response
Sysinfo
Doesn't matter. It's a code bug.
Console logs
Additional information
No response
The text was updated successfully, but these errors were encountered: