aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2010-12-18 17:58:36 +0100
committerMarcin Kuzminski <marcin@python-works.com>2010-12-18 17:58:36 +0100
commit21aa8f75778cfc6ad03b65d628c2b15d53bcfde7 (patch)
tree1b909d6d6fac8ce6002d96d76b529f363edc3be3
parente1f6027a14275e7e4e623b10d0d0b74bae33ddfa (diff)
fixed error in setup.py RST generationv1.1.0
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6188e23c..e9df479a 100644
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,7 @@ description = ('Mercurial repository browser/management with '
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: