From ecbc09f22a076b6ca985f6c5cab0967976dad12a Mon Sep 17 00:00:00 2001 From: Leon Barrett Date: Wed, 13 Feb 2019 11:54:51 -0800 Subject: [PATCH] Setup.py references fonts dir plural (#721) The fonts are in `static/fonts`, but setup.py has been installing `static/font`. That didn't seem to work for me. This changes setup.py to match the actual directory. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a3dc3578a..09e594c16 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ '*.html', 'static/css/*.css', 'static/js/*.js', - 'static/font/*.*' + 'static/fonts/*.*' ]}, include_package_data=True, # See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package