From 46979f512d67fefda44d613a0c7d46d10738a955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Thu, 12 May 2011 12:41:51 +0000 Subject: [PATCH] 4899: according to specification, increase limite from '72' (default) to '120' svn: r17479 --- src/plugins/export/ExportGedcom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/export/ExportGedcom.py b/src/plugins/export/ExportGedcom.py index 028f2a5a3..a15835f5f 100644 --- a/src/plugins/export/ExportGedcom.py +++ b/src/plugins/export/ExportGedcom.py @@ -1403,7 +1403,7 @@ class GedcomWriter(UpdateCallback): """ if place is None: return place_name = place.get_title() - self.__writeln(level, "PLAC", place_name.replace('\r', ' ')) + self.__writeln(level, "PLAC", place_name.replace('\r', ' '), limit=120) longitude = place.get_longitude() latitude = place.get_latitude() if longitude and latitude: