diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py index d85c39657..155f182c2 100644 --- a/modules/ui_extra_networks.py +++ b/modules/ui_extra_networks.py @@ -521,7 +521,7 @@ class ExtraNetworksPage: if not isinstance(info, dict): self.desc_time += time.time() - t0 return '' - desc = info.get('description', '') + desc = info.get('description', '') or '' f = HTMLFilter() f.feed(desc) t1 = time.time()