##// END OF EJS Templates
docs: drop empty Changelog in the documentation...
Mads Kiilerich -
r6000:7c732f20 default
parent child Browse files
Show More
@@ -55,7 +55,6 b' Kallithea Documentation'
55 contributing
55 contributing
56 dev/translation
56 dev/translation
57 dev/dbmigrations
57 dev/dbmigrations
58 changelog
59
58
60 **API**
59 **API**
61
60
@@ -23,7 +23,6 b' docs/Makefile'
23 docs/api/
23 docs/api/
24 docs/api/api.rst
24 docs/api/api.rst
25 docs/api/models.rst
25 docs/api/models.rst
26 docs/changelog.rst
27 docs/conf.py
26 docs/conf.py
28 docs/contributing.rst
27 docs/contributing.rst
29 docs/images/
28 docs/images/
@@ -97,15 +97,12 b" keywords = ' '.join(["
97
97
98 # long description
98 # long description
99 README_FILE = 'README.rst'
99 README_FILE = 'README.rst'
100 CHANGELOG_FILE = 'docs/changelog.rst'
101 try:
100 try:
102 long_description = open(README_FILE).read() + '\n\n' + \
101 long_description = open(README_FILE).read()
103 open(CHANGELOG_FILE).read()
104
105 except IOError as err:
102 except IOError as err:
106 sys.stderr.write(
103 sys.stderr.write(
107 "[WARNING] Cannot find file specified as long_description (%s)\n or "
104 "[WARNING] Cannot find file specified as long_description (%s)\n"
108 "changelog (%s) skipping that file" % (README_FILE, CHANGELOG_FILE)
105 % README_FILE
109 )
106 )
110 long_description = description
107 long_description = description
111
108
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now