Skip to content

Commit

Permalink
Drop trying to reach MusicBrainz over HTTPS for now
Browse files Browse the repository at this point in the history
The Python library being used does not currently support contacting
MusicBrainz.org over HTTPS:
alastair/python-musicbrainzngs#197
  • Loading branch information
Freso committed Feb 27, 2017
1 parent 11cb82e commit 136e7a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion freedb2musicbrainz.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@

__version__ = '0.0.0'

MUSICBRAINZ_HOST = 'musicbrainz.org:443'
# TODO: Switch to HTTPS (port 443) once upstream is fixed:
# https://github.com/alastair/python-musicbrainzngs/issues/197
MUSICBRAINZ_HOST = 'musicbrainz.org'


def cddb_lookup_string(disc):
Expand Down

0 comments on commit 136e7a0

Please sign in to comment.