Fix variable name

main
Bob Mottram 2020-05-25 12:53:47 +01:00
parent e6fb9842dd
commit b7f66db945
1 changed files with 7 additions and 7 deletions

View File

@ -1741,15 +1741,15 @@ class PubServer(BaseHTTPRequestHandler):
# get fonts # get fonts
if '/fonts/' in self.path: if '/fonts/' in self.path:
fontStr = self.path.split('/fonts/')[1] fontStr = self.path.split('/fonts/')[1]
if fontsStr.endswith('.otf') or \ if fontStr.endswith('.otf') or \
fontsStr.endswith('.ttf') or \ fontStr.endswith('.ttf') or \
fontsStr.endswith('.woff') or \ fontStr.endswith('.woff') or \
fontsStr.endswith('.woff2'): fontStr.endswith('.woff2'):
if fontsStr.endswith('.otf'): if fontStr.endswith('.otf'):
fontType = 'application/x-font-opentype' fontType = 'application/x-font-opentype'
elif fontsStr.endswith('.ttf'): elif fontStr.endswith('.ttf'):
fontType = 'application/x-font-truetype' fontType = 'application/x-font-truetype'
elif fontsStr.endswith('.woff'): elif fontStr.endswith('.woff'):
fontType = 'application/font-woff' fontType = 'application/font-woff'
else: else:
fontType = 'application/font-woff2' fontType = 'application/font-woff2'