From: BenoƮt Fontaine Date: Sun, 13 May 2018 14:04:13 +0000 (+0200) Subject: Fix CONT level under Memorie title (OBJE, TITL) and Source page (SOUR PAGE) X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=fb849e2a8f668dbf9f914dcb584c6aff08bc8df6;p=gamesguru%2Fgetmyancestors.git Fix CONT level under Memorie title (OBJE, TITL) and Source page (SOUR PAGE) --- diff --git a/getmyancestors.py b/getmyancestors.py index 764edd6..19f4127 100755 --- a/getmyancestors.py +++ b/getmyancestors.py @@ -352,7 +352,7 @@ class Memorie: def print(self, file=sys.stdout): file.write('1 OBJE\n2 FORM URL\n') if self.description: - file.write('2 TITL ' + cont(2, self.description) + '\n') + file.write('2 TITL ' + cont(3, self.description) + '\n') if self.url: file.write('2 FILE ' + self.url + '\n') @@ -588,7 +588,7 @@ class Indi: for source, quote in self.sources: source.link(file, 1) if quote: - file.write('2 PAGE ' + cont(2, quote) + '\n') + file.write('2 PAGE ' + cont(3, quote) + '\n') # GEDCOM family class @@ -688,7 +688,7 @@ class Fam: for source, quote in self.sources: source.link(file, 1) if quote: - file.write('2 PAGE ' + cont(2, quote) + '\n') + file.write('2 PAGE ' + cont(3, quote) + '\n') # family tree class