fix minor double-count of errors
svn: r10145
This commit is contained in:
parent
0c2f9601e5
commit
6aacd516ed
@ -1,3 +1,8 @@
|
|||||||
|
2008-02-28 Jim Sack <jgsack@san.rr.com>
|
||||||
|
* src/GrampsDbUtils/_GedcomParse.py minor: remove redundant
|
||||||
|
counting of errors dating to r8912 patch, I think. I don't believe
|
||||||
|
this actually affects anything, but it is "clearly" an oversight
|
||||||
|
|
||||||
2008-02-29 Benny Malengier <benny.malengier@gramps-project.org>
|
2008-02-29 Benny Malengier <benny.malengier@gramps-project.org>
|
||||||
* src/GrampsDbUtils/_GedcomParse.py: find_family_from_handle returns tuple
|
* src/GrampsDbUtils/_GedcomParse.py: find_family_from_handle returns tuple
|
||||||
* src/Editors/_EditPerson.py: don't use find_person but get_person
|
* src/Editors/_EditPerson.py: don't use find_person but get_person
|
||||||
|
@ -1072,7 +1072,6 @@ class GedcomParser(UpdateCallback):
|
|||||||
if not self.groups:
|
if not self.groups:
|
||||||
self.backoff = False
|
self.backoff = False
|
||||||
self.__warn(TRUNC_MSG)
|
self.__warn(TRUNC_MSG)
|
||||||
self.error_count += 1
|
|
||||||
self.groups = None
|
self.groups = None
|
||||||
raise Errors.GedcomError(TRUNC_MSG)
|
raise Errors.GedcomError(TRUNC_MSG)
|
||||||
|
|
||||||
@ -1089,7 +1088,6 @@ class GedcomParser(UpdateCallback):
|
|||||||
"""
|
"""
|
||||||
msg = _("Line %d was not understood, so it was ignored.") % line.line
|
msg = _("Line %d was not understood, so it was ignored.") % line.line
|
||||||
self.__warn(msg)
|
self.__warn(msg)
|
||||||
self.error_count += 1
|
|
||||||
self.__skip_subordinate_levels(level)
|
self.__skip_subordinate_levels(level)
|
||||||
|
|
||||||
def __warn(self, msg):
|
def __warn(self, msg):
|
||||||
|
Loading…
Reference in New Issue
Block a user