Skip to content

Commit 5c526d5

Browse files
committed
Fix encoding issue in setup.py for Simpay API wrapper
The commit fixes an issue where the README.md file was not being read correctly due to encoding. The change adds the 'utf-8' encoding parameter to the open() function call.
1 parent 50e6054 commit 5c526d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
name='simpay-api',
77
version='3.0',
88
description='Python wrapper for Simpay API',
9-
long_description=open('README.md').read(),
9+
long_description=open('README.md', encoding='utf-8').read(),
1010
long_description_content_type="text/markdown",
1111
author='Rafał Więcek',
1212
author_email="kontakt@simpay.pl",

0 commit comments

Comments
 (0)