]> kaliko git repositories - mpd-sima.git/blobdiff - sima/mpdclient.py
Fixed double quote error, missing escape character (Closes #52)
[mpd-sima.git] / sima / mpdclient.py
index 6b5b9767e95dd3eca58e3e1c6a16d7763da66c88..45d3dcdf767ab4bbc21c77a2629d45a0b60a3bbc 100644 (file)
@@ -365,15 +365,11 @@ class MPD(MPDClient):
 # #### Search Methods #####
     def _find_musicbrainz_artistid(self, artist):
         """Find MusicBrainzArtistID when possible.
-        For artist with aliases having a mbid but not the main name, no mbid is
-        fetched…
-        Searching for Artist('Russian Circls') do not reslove the MBID
         """
         if not self.use_mbid:
             return None
         mbids = None
         for name in artist.names_sz:
-            self.log.debug(name)
             filt = f'((artist == "{name}") AND (MUSICBRAINZ_ARTISTID != ""))'
             mbids = self.list('MUSICBRAINZ_ARTISTID', filt)
             if mbids: