mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 02:26:38 -04:00
- Use python-lsp-server instead of python-language-server - Make utf-8 ready for python36 Reported by: Repology
11 lines
350 B
Python
11 lines
350 B
Python
--- setup.py.orig 2021-04-29 20:01:20 UTC
|
|
+++ setup.py
|
|
@@ -33,7 +33,7 @@ def get_version(module='pyls_spyder'):
|
|
|
|
def get_description():
|
|
"""Get long description."""
|
|
- with open(os.path.join(HERE, 'README.md'), 'r') as f:
|
|
+ with open(os.path.join(HERE, 'README.md'), 'r', encoding='utf8') as f:
|
|
data = f.read()
|
|
return data
|
|
|