Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 56d4021

Browse files
committed
Fix rst errors
1 parent 778e8d5 commit 56d4021

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please read the Celery getting started tutorial::
1919
http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html
2020

2121

22-
You can easily add Celery to your flask application like this::
22+
You can easily add Celery to your flask application like this:
2323

2424
``myapp.py``::
2525

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Celery integration for Flask
66
77
"""
8+
import codecs
89
from setuptools import setup
910

1011
setup(
@@ -15,7 +16,7 @@
1516
author='Ask Solem',
1617
author_email='[email protected]',
1718
description='Celery integration for Flask',
18-
long_description=__doc__,
19+
long_description=codecs.open('README.rst', 'r', 'utf-8').read(),
1920
py_modules=['flask_celery'],
2021
zip_safe=False,
2122
platforms='any',

0 commit comments

Comments
 (0)