Skip to content

Commit

Permalink
Removed .join from mopidy's search
Browse files Browse the repository at this point in the history
  • Loading branch information
JaniL committed Jul 6, 2014
1 parent adeda27 commit 891b8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_soundcloud/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def search(self, query=None, uris=None):
tracks=self.backend.remote.resolve_url(search_query)
)
else:
search_query = ''.join(query.values()[0])
search_query = query.values()[0]
logger.info('Searching SoundCloud for \'%s\'', search_query)
return SearchResult(
uri='soundcloud:search',
Expand Down

0 comments on commit 891b8e6

Please sign in to comment.