santa hat
deerdeer nosedeer glow
Sign In

In the A1111 command text box, I'm now getting these lines....

This is only a partial sampling of the many lines I'm now seeing, which have never been there before. Ending with:
RunTimeError : dictionary changed size during iteration

Does anyone know what this all means and how I can fix it? Thanks!

File "H:\stable-diffusion-webui\venv\lib\site-packages\gradio\utils.py", line 707, in wrapper

response = f(*args, **kwargs)

File "H:\stable-diffusion-webui\modules\ui_extra_networks.py", line 392, in pages_html

return refresh()

File "H:\stable-diffusion-webui\modules\ui_extra_networks.py", line 400, in refresh

ui.pages_contents = [pg.create_html(ui.tabname) for pg in ui.stored_extra_pages]

File "H:\stable-diffusion-webui\modules\ui_extra_networks.py", line 400, in <listcomp>

ui.pages_contents = [pg.create_html(ui.tabname) for pg in ui.stored_extra_pages]

File "H:\stable-diffusion-webui\modules\ui_extra_networks.py", line 162, in create_html

self.items = {x["name"]: x for x in self.list_items()}

File "H:\stable-diffusion-webui\modules\ui_extra_networks.py", line 162, in <dictcomp>

self.items = {x["name"]: x for x in self.list_items()}

File "H:\stable-diffusion-webui\extensions-builtin\Lora\ui_extra_networks_lora.py", line 69, in list_items

for index, name in enumerate(networks.available_networks):

RuntimeError: dictionary changed size during iteration

1 Answer

google is your friend, basically just throw in File "H:\stable-diffusion-webui\extensions-builtin\Lora\ui_extra_networks_lora.py", line 69, in list_items as query and lead to this https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/13011 then this https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/13014

but since the commit in 13014 brough new issue and was declained for merging, also the date was in september which was beyond the lastest public release package (aug 31), that means it's not fixed in stable build yet

Your answer