Skip to content

Commit

Permalink
Fix rst errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jul 7, 2012
1 parent 778e8d5 commit 56d4021
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -19,7 +19,7 @@ Please read the Celery getting started tutorial::
http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html


You can easily add Celery to your flask application like this::
You can easily add Celery to your flask application like this:

``myapp.py``::

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -5,6 +5,7 @@
Celery integration for Flask
"""
import codecs
from setuptools import setup

setup(
Expand All @@ -15,7 +16,7 @@
author='Ask Solem',
author_email='ask@celeryproject.org',
description='Celery integration for Flask',
long_description=__doc__,
long_description=codecs.open('README.rst', 'r', 'utf-8').read(),
py_modules=['flask_celery'],
zip_safe=False,
platforms='any',
Expand Down

0 comments on commit 56d4021

Please sign in to comment.