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