summaryrefslogtreecommitdiffstats
path: root/sphinx/builders/changes.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sphinx/builders/changes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py
index b233e85..48a0ed8 100644
--- a/sphinx/builders/changes.py
+++ b/sphinx/builders/changes.py
@@ -56,7 +56,7 @@ class ChangesBuilder(Builder):
changesets = domain.get_changesets_for(version)
if not changesets:
- logger.info(bold(__('no changes in version %s.') % version))
+ logger.info(bold(__('no changes in version %s.')), version)
return
logger.info(bold(__('writing summary file...')))
for changeset in changesets:
@@ -140,7 +140,7 @@ class ChangesBuilder(Builder):
f.write(self.templates.render('changes/rstsource.html', ctx))
themectx = {'theme_' + key: val for (key, val) in
self.theme.get_options({}).items()}
- copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css_t'),
+ copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css.jinja'), # NoQA: E501
self.outdir, context=themectx, renderer=self.templates)
copy_asset_file(path.join(package_dir, 'themes', 'basic', 'static', 'basic.css'),
self.outdir)