diff --git a/gramps/plugins/lib/libgedcom.py b/gramps/plugins/lib/libgedcom.py index a1334a8c4..1c3a438f4 100644 --- a/gramps/plugins/lib/libgedcom.py +++ b/gramps/plugins/lib/libgedcom.py @@ -5372,8 +5372,7 @@ class GedcomParser(UpdateCallback): name = EventType(GED_TO_GRAMPS_EVENT[line.data]) else: try: - name = EventType((EventType.CUSTOM, - line.data)) + name = EventType((EventType.CUSTOM, line.data)) except AttributeError: name = EventType(EventType.UNKNOWN) state.event.set_type(name)