ソースを参照

[fix] unicode response in deezer and spotify

Adam Tauber 8 年 前
コミット
e12a137a2f
共有2 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 1
    1
      searx/engines/deezer.py
  2. 1
    1
      searx/engines/spotify.py

+ 1
- 1
searx/engines/deezer.py ファイルの表示

@@ -51,7 +51,7 @@ def response(resp):
51 51
             if url.startswith('http://'):
52 52
                 url = 'https' + url[4:]
53 53
 
54
-            content = '{} - {} - {}'.format(
54
+            content = u'{} - {} - {}'.format(
55 55
                 result['artist']['name'],
56 56
                 result['album']['title'],
57 57
                 result['title'])

+ 1
- 1
searx/engines/spotify.py ファイルの表示

@@ -46,7 +46,7 @@ def response(resp):
46 46
         if result['type'] == 'track':
47 47
             title = result['name']
48 48
             url = result['external_urls']['spotify']
49
-            content = '{} - {} - {}'.format(
49
+            content = u'{} - {} - {}'.format(
50 50
                 result['artists'][0]['name'],
51 51
                 result['album']['name'],
52 52
                 result['name'])