From e2a68b700c246c3a4fe64e039e4b54ac77a98537 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 May 2016 20:18:53 +0530 Subject: [PATCH] typo --- setup/mathjax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/mathjax.py b/setup/mathjax.py index 6df36c2f2f..4a84d354ad 100644 --- a/setup/mathjax.py +++ b/setup/mathjax.py @@ -62,7 +62,7 @@ class MathJax(Command): from calibre.ptempfile import SpooledTemporaryFile t = SpooledTemporaryFile() with ZipFile(t, 'w', ZIP_STORED) as zf: - self.add_tree(zf, self.j(src, 'fonts', 'HTML-CSS', self.FONT_FAMILY, 'woff'), 'fonts/HTML-CSS/STIX-Web/woff') + self.add_tree(zf, self.j(src, 'fonts', 'HTML-CSS', self.FONT_FAMILY, 'woff'), 'fonts/HTML-CSS/%s/woff' % self.FONT_FAMILY) self.add_tree(zf, self.j(src, 'unpacked', 'extensions'), 'extensions') self.add_tree(zf, self.j(src, 'unpacked', 'jax', 'element'), 'jax/element') self.add_tree(zf, self.j(src, 'unpacked', 'jax', 'input'), 'jax/input')