diff options
Diffstat (limited to 'lib/lettering')
| -rw-r--r-- | lib/lettering/glyph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lettering/glyph.py b/lib/lettering/glyph.py index fd97885b..0b916fc0 100644 --- a/lib/lettering/glyph.py +++ b/lib/lettering/glyph.py @@ -103,7 +103,7 @@ class Glyph(object): self.commands[command_object].append([connector.get_id(), node.get_id()]) except KeyError: self.commands[command_object] = [[connector.get_id(), node.get_id()]] - except IndexError: + except (IndexError, TypeError): pass def _move_to_origin(self): |
