Minor cleanup

svn: r1554
This commit is contained in:
Alex Roitman 2003-05-20 21:58:24 +00:00
parent 05920de921
commit c330ce332d

View File

@ -361,25 +361,16 @@ class GedcomParser:
def barf(self,level):
msg = _("Warning: line %d was not understood, so it was ignored.") % self.index
if self.window:
self.errmsg(msg)
else:
print msg
msg = "\n\t%s\n" % self.text
if self.window:
self.errmsg(msg)
self.error_count = self.error_count + 1
else:
print msg
self.ignore_sub_junk(level)
def warn(self,msg):
if self.window:
self.errmsg(msg)
self.error_count = self.error_count + 1
else:
print msg
def backup(self):
self.backoff = 1