Merge pull request #215 from prculley/dialog
Bug 8128 for libgedcom; Ensure no popup under CLI for warning
This commit is contained in:
commit
2a7907c6c1
@ -7301,13 +7301,12 @@ class GedcomParser(UpdateCallback):
|
|||||||
# coding is now wrong.
|
# coding is now wrong.
|
||||||
if self.genby.upper() == "LEGACY":
|
if self.genby.upper() == "LEGACY":
|
||||||
fname = os.path.basename(self.filename)
|
fname = os.path.basename(self.filename)
|
||||||
WarningDialog( # parent-OK
|
self.user.warn(
|
||||||
_("Import of GEDCOM file %(filename)s with DEST=%(by)s, "
|
_("Import of GEDCOM file %(filename)s with DEST=%(by)s, "
|
||||||
"could cause errors in the resulting database!")
|
"%(by)s, could cause errors in the resulting database!") %
|
||||||
% {'filename': fname, 'by': self.genby},
|
{'filename': fname, 'by': self.genby},
|
||||||
_("Look for nameless events."),
|
_("Look for nameless events.")
|
||||||
parent=self.user.uistate.window
|
)
|
||||||
)
|
|
||||||
|
|
||||||
def __header_char(self, line, state):
|
def __header_char(self, line, state):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user