Removes forgotten legacy code

This commit is contained in:
Roman Miroshnychenko 2016-04-11 18:12:57 +03:00
parent 40fe06fc82
commit b790f231bf
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ def list_categories():
# Iterate through categories # Iterate through categories
for category in categories: for category in categories:
# Create a list item with a text label and a thumbnail image. # Create a list item with a text label and a thumbnail image.
list_item = xbmcgui.ListItem(label=category, thumbnailImage=VIDEOS[category][0]['thumb']) list_item = xbmcgui.ListItem(label=category)
# Set graphics (thumbnail, fanart, banner, poster, landscape etc.) for the list item. # Set graphics (thumbnail, fanart, banner, poster, landscape etc.) for the list item.
# Here we use the same image for all items for simplicity's sake. # Here we use the same image for all items for simplicity's sake.
# In a real-life plugin you need to set each image accordingly. # In a real-life plugin you need to set each image accordingly.