Skip to content

Commit 9f7884b

Browse files
committed
Fix PyPI readme render
1 parent df9aa32 commit 9f7884b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ Copyright & License
120120

121121
.. |description| replace:: **Telegram MTProto API Framework for Python**
122122

123-
.. |schema| image:: "https://img.shields.io/badge/schema-layer%2091-eda738.svg?longCache=true&colorA=262b30"
123+
.. |schema| image:: https://img.shields.io/badge/schema-layer%2091-eda738.svg?longCache=true&colorA=262b30
124124
:target: compiler/api/source/main_api.tl
125125
:alt: Schema Layer
126126

127-
.. |tgcrypto| image:: "https://img.shields.io/badge/tgcrypto-v1.1.1-eda738.svg?longCache=true&colorA=262b30"
127+
.. |tgcrypto| image:: https://img.shields.io/badge/tgcrypto-v1.1.1-eda738.svg?longCache=true&colorA=262b30
128128
:target: https://github.com/pyrogram/tgcrypto
129129
:alt: TgCrypto Version

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ def get_version():
3939

4040

4141
def get_readme():
42-
# PyPI doesn"t like raw html
42+
# PyPI doesn't like raw html
4343
with open("README.rst", encoding="utf-8") as f:
4444
readme = re.sub(r"\.\. \|.+\| raw:: html(?:\s{4}.+)+\n\n", "", f.read())
45-
return re.sub(r"\|header\|", "|logo|\n\n|description|\n\n|scheme| |tgcrypto|", readme)
45+
return re.sub(r"\|header\|", "|logo|\n\n|description|\n\n|schema| |tgcrypto|", readme)
4646

4747

4848
class Clean(Command):

0 commit comments

Comments
 (0)