Skip to content

Commit eb9849c

Browse files
authored
Fix wrong BrowseError module in Kode (home-assistant#155971)
1 parent 93d48fa commit eb9849c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/components/kodi/browse_media.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ async def library_payload(hass):
221221
for child in library_info.children:
222222
child.thumbnail = "https://brands.home-assistant.io/_/kodi/logo.png"
223223

224-
with contextlib.suppress(media_source.BrowseError):
224+
with contextlib.suppress(BrowseError):
225225
item = await media_source.async_browse_media(
226226
hass, None, content_filter=media_source_content_filter
227227
)

0 commit comments

Comments
 (0)