From: Kaliko Jack Date: Sun, 19 Jan 2014 16:33:05 +0000 (+0100) Subject: Add explicit file encoding for open in setup.py X-Git-Tag: v0.4.1~2 X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=a0e88963aa60b475a13d831cb108ccb49c267dd3 Add explicit file encoding for open in setup.py --- diff --git a/setup.py b/setup.py index 18e0007..4e49c65 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ An MPD (Music Player Daemon) client library written in pure Python.\ """ -with open('README.rst') as file: +with open('README.rst', encoding='UTF-8') as file: LONG_DESCRIPTION = file.read() CLASSIFIERS = [