From 6937834b91654eea97e2c5d96b1ab732adb9a996 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sun, 11 Sep 2016 01:34:59 -0500 Subject: [PATCH] Fix typo in path --- resources/lib/artwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/artwork.py b/resources/lib/artwork.py index 6bc4c4cb..b7b4eb7b 100644 --- a/resources/lib/artwork.py +++ b/resources/lib/artwork.py @@ -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)