From 236e2b6abd560b247a986b6cf4fb51cff8891088 Mon Sep 17 00:00:00 2001 From: Christian Walde Date: Sun, 27 Jan 2019 01:55:15 +0100 Subject: [PATCH] allow font munger to use "+" --- font_manipulator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/font_manipulator.py b/font_manipulator.py index 85c7241..c3bf7d6 100644 --- a/font_manipulator.py +++ b/font_manipulator.py @@ -53,6 +53,8 @@ def glyph_nach_datei(glyph): return "exclam.glyph" elif glyph == "\"": return "quotedbl.glyph" + elif glyph == "+": + return "plus.glyph" else: chars = list(glyph) i = 0