* src/plugins/ReadGedcom.py (GedcomParser.__init__): Use

universal newline mode to work with Mac newlines.


svn: r3269
This commit is contained in:
Alex Roitman
2004-07-13 03:08:35 +00:00
parent 52510afa71
commit 3245788657
2 changed files with 3 additions and 1 deletions

View File

@@ -220,7 +220,7 @@ class GedcomParser:
self.is_ftw = 0
self.idswap = {}
self.f = open(file,"r")
self.f = open(file,"rU")
self.filename = file
self.index = 0
self.backoff = 0