# HG changeset patch # User Marcin Kuzminski # Date 1292692245 -3600 # Node ID cc635016933f9bbcc6bbbdbf094a4c3ff9e591cb # Parent cef384882e8135e925add4f5a1475788cae10a88 fixed error in setup.py RST generation, speling fix for README diff -r cef384882e81 -r cc635016933f README.rst --- a/README.rst Sat Dec 18 17:13:10 2010 +0100 +++ b/README.rst Sat Dec 18 18:10:45 2010 +0100 @@ -60,7 +60,7 @@ (no external search servers required all in one application) - Setup project descriptions and info inside built in db for easy, non file-system operations -- Inteligent cache with invalidation after push or project change, provides high +- Intelligent cache with invalidation after push or project change, provides high performance and always up to date data. - Rss / atom feeds, gravatar support, download sources as zip/tar/gz - Async tasks for speed and performance using celery_ (works without them too) diff -r cef384882e81 -r cc635016933f setup.py --- a/setup.py Sat Dec 18 17:13:10 2010 +0100 +++ b/setup.py Sat Dec 18 18:10:45 2010 +0100 @@ -41,7 +41,7 @@ try: readme_file = 'README.rst' changelog_file = 'docs/changelog.rst' - long_description = open(readme_file).read() + '/n/n' + \ + long_description = open(readme_file).read() + '\n\n' + \ open(changelog_file).read() except IOError, err: