Skip to content

Commit efd2099

Browse files
committedOct 22, 2020
fix(//py): Fix long description section of setup.py
Thanks to @mneilly for catching this Signed-off-by: Naren Dasan <naren@narendasan.com> Signed-off-by: Naren Dasan <narens@nvidia.com>
1 parent e4a4574 commit efd2099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎py/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def run(self):
190190
)
191191
]
192192

193-
with open("README.md", "r") as fh:
193+
with open("README.md", "r", encoding="utf-8") as fh:
194194
long_description = fh.read()
195195

196196
setup(

0 commit comments

Comments
 (0)
Please sign in to comment.