Changeset - d9c8dddb96af
[Not reviewed]
Marcin Kuzminski - 15 years ago 2010-12-18 17:58:36
marcin@python-works.com
fixed error in setup.py RST generation
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
@@ -38,13 +38,13 @@ package_data = {'rhodecode': ['i18n/*/LC
 
description = ('Mercurial repository browser/management with '
 
               'build in push/pull server and full text search')
 
#long description
 
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:
 
    sys.stderr.write("[WARNING] Cannot find file specified as "
 
        "long_description (%s)\n or changelog (%s) skipping that file" \
 
            % (readme_file, changelog_file))
0 comments (0 inline, 0 general)