[Python-modules-commits] [osmalchemy] 01/07: Fix encoding bug when building in non-UTF-8 locale
Dominik George
natureshadow-guest at moszumanska.debian.org
Wed Sep 28 12:13:48 UTC 2016
This is an automated email from the git hooks/post-receive script.
natureshadow-guest pushed a commit to branch master
in repository osmalchemy.
commit d1d37aeac3402ed7c4daa74c44dedfd16dfd91b3
Author: Dominik George <nik at naturalnet.de>
Date: Wed Sep 28 13:52:42 2016 +0200
Fix encoding bug when building in non-UTF-8 locale
Bug: https://github.com/Veripeditus/OSMAlchemy/issues/7
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index a73503d..067f24b 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ setup(
version = '0.1.post1',
keywords = ['osm', 'openstreetmap', 'proxy', 'caching', 'orm'],
description = 'OpenStreetMap to SQLAlchemy bridge',
- long_description = open(os.path.join(MYDIR, "README.rst"), "r").read(),
+ long_description = open(os.path.join(MYDIR, "README.rst"), "r", encoding="utf-8").read(),
url = 'https://github.com/Natureshadow/OSMAlchemy',
# Author information
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/osmalchemy.git
More information about the Python-modules-commits
mailing list