From 6666d3fc3afcefcebd81f527a00580b9b5321600 Mon Sep 17 00:00:00 2001 From: croneter Date: Mon, 17 Sep 2018 18:13:33 +0200 Subject: [PATCH] Fix AttributeError on forcing texture caching --- 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 edf4d21e..759498e6 100644 --- a/resources/lib/artwork.py +++ b/resources/lib/artwork.py @@ -318,7 +318,7 @@ class Artwork(): "Video", "plex") for path in paths: new_path = path_ops.translate_path("special://thumbnails/%s" % path) - path_ops.makedirs(utils.encode_path(new_path)) + path_ops.makedirs(path_ops.encode_path(new_path)) class ArtworkSyncMessage(object):