summaryrefslogtreecommitdiff
path: root/sphinx/builders/changes.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/builders/changes.py')
-rw-r--r--sphinx/builders/changes.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py
index 6f057b49d..d4520fa54 100644
--- a/sphinx/builders/changes.py
+++ b/sphinx/builders/changes.py
@@ -129,8 +129,12 @@ class ChangesBuilder(Builder):
f.write(self.templates.render('changes/rstsource.html', ctx))
finally:
f.close()
- shutil.copyfile(path.join(package_dir, 'static', 'default.css'),
+ shutil.copyfile(path.join(package_dir, 'themes', 'default',
+ 'static', 'default.css'),
path.join(self.outdir, 'default.css'))
+ shutil.copyfile(path.join(package_dir, 'themes', 'basic',
+ 'static', 'basic.css'),
+ path.join(self.outdir, 'basic.css'))
def hl(self, text, version):
text = escape(text)