Fix typo in path

This commit is contained in:
angelblue05 2016-09-11 01:34:59 -05:00
parent 8f56c9d20f
commit 6937834b91
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ class Artwork(object):
log.info("Database is locked. Skip deletion process.")
else: # Delete thumbnail as well as the entry
thumbnails = xbmc.translatePath("special://thumbnails/%s", cached_url).decode('utf-8')
thumbnails = xbmc.translatePath("special://thumbnails/%s" % cached_url).decode('utf-8')
log.info("Deleting cached thumbnail: %s", thumbnails)
xbmcvfs.delete(thumbnails)