You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2017/04/20 16:54:17 UTC

tinkerpop git commit: Fixed a minor issue with encoding in gremlin-python readme

Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 4c6d8a011 -> 25e367bbd


Fixed a minor issue with encoding in gremlin-python readme

Not sure why this was suddenly an issue, but docker builds recently started failing for me with python 3. Used codecs lib to read the file as UTF-8 and that seemed to fix the problem. CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/25e367bb
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/25e367bb
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/25e367bb

Branch: refs/heads/tp32
Commit: 25e367bbd46a286eaf1b6f8278bfb0468c83b764
Parents: 4c6d8a0
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Apr 20 12:52:21 2017 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Apr 20 12:52:21 2017 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/25e367bb/gremlin-python/src/main/jython/setup.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/setup.py b/gremlin-python/src/main/jython/setup.py
index da7da68..e6ab493 100644
--- a/gremlin-python/src/main/jython/setup.py
+++ b/gremlin-python/src/main/jython/setup.py
@@ -62,7 +62,7 @@ setup(
     license='Apache 2',
     url='http://tinkerpop.apache.org',
     description='Gremlin-Python for Apache TinkerPop',
-    long_description=open("README").read(),
+    long_description=codecs.open("README", "r", "UTF-8").read(),
     test_suite="tests",
     data_files=[("", ["LICENSE", "NOTICE"])],
     setup_requires=[