Skip to content

Commit

Permalink
Setup.py references fonts dir plural (#721)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
leon-barrett authored and Blendify committed Feb 13, 2019
1 parent 13a9010 commit ecbc09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'*.html', '*.html',
'static/css/*.css', 'static/css/*.css',
'static/js/*.js', 'static/js/*.js',
'static/font/*.*' 'static/fonts/*.*'
]}, ]},
include_package_data=True, include_package_data=True,
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package # See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
Expand Down

0 comments on commit ecbc09f

Please sign in to comment.