mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
Remove a spurious six use
I'm not sure what that `encode` was doing anyway.
This commit is contained in:
parent
5efd5b21c5
commit
a8b039da78
1 changed files with 1 additions and 2 deletions
|
|
@ -9,7 +9,6 @@ from beets.plugins import BeetsPlugin
|
|||
from beets.ui import decargs
|
||||
from beets import ui
|
||||
from requests.exceptions import HTTPError
|
||||
import six
|
||||
|
||||
|
||||
class SpotifyPlugin(BeetsPlugin):
|
||||
|
|
@ -171,6 +170,6 @@ class SpotifyPlugin(BeetsPlugin):
|
|||
|
||||
else:
|
||||
for item in ids:
|
||||
print(six.text_type.encode(self.open_url + item))
|
||||
print(self.open_url + item)
|
||||
else:
|
||||
self._log.warn(u'No Spotify tracks found from beets query')
|
||||
|
|
|
|||
Loading…
Reference in a new issue