You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting the sd.next through launcher.py the start crashes because it cannot convert the string from version_time = int(git('log -1 --pretty=format:"%at"'))
into an int,
I fixed it for myself by changing it to: version_time = int(''.join(filter(str.isdigit, git('log -1 --pretty="format:%at"'))))
But there is probably a better solution.
Issue Description
When starting the sd.next through launcher.py the start crashes because it cannot convert the string from
version_time = int(git('log -1 --pretty=format:"%at"'))
into an int,
I fixed it for myself by changing it to:
version_time = int(''.join(filter(str.isdigit, git('log -1 --pretty="format:%at"'))))
But there is probably a better solution.
Version Platform Description
c925b61 & a1ab39b, Windows, N/A
Relevant log output
Backend
Diffusers
UI
Standard
Branch
Master
Model
StableDiffusion 1.5
Acknowledgements
The text was updated successfully, but these errors were encountered: