changeset 868:cc635016933f beta

fixed error in setup.py RST generation, speling fix for README
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 18 Dec 2010 18:10:45 +0100
parents cef384882e81
children 0a099e4ad4bf
files README.rst setup.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)  
--- 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: