From 4d741b242eec5a52cd35f7ffd105287d09d00296 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sat, 17 Sep 2016 08:29:22 -0500 Subject: [PATCH] Correct typo --- resources/lib/artwork.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lib/artwork.py b/resources/lib/artwork.py index b7b4eb7b..c57ed072 100644 --- a/resources/lib/artwork.py +++ b/resources/lib/artwork.py @@ -48,13 +48,13 @@ class Artwork(object): def _double_urlencode(self, text): - text = self._single_urlencode(text) - text = self._single_urlencode(text) + text = self.single_urlencode(text) + text = self.single_urlencode(text) return text @classmethod - def _single_urlencode(cls, text): + def single_urlencode(cls, text): # urlencode needs a utf- string text = urllib.urlencode({'blahblahblah': text.encode('utf-8')}) text = text[13:]