Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Character encoding fix courtesy github user nathanapples #3108

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions headphones/librarysync.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
from headphones import db, logger, helpers, importer, lastfm


# encoding=utf8
import sys


reload(sys)
sys.setdefaultencoding('utf8')


# You can scan a single directory and append it to the current library by
# specifying append=True, ArtistID and ArtistName.
def libraryScan(dir=None, append=False, ArtistID=None, ArtistName=None,
Expand Down
5 changes: 5 additions & 0 deletions headphones/searcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
from headphones import utorrent, transmission, notifiers, rutracker, deluge, qbittorrent
from bencode import bencode, bdecode

# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding('utf8')

# Magnet to torrent services, for Black hole. Stolen from CouchPotato.
TORRENT_TO_MAGNET_SERVICES = [
# 'https://zoink.it/torrent/%s.torrent',
Expand Down