0.7.3 release

svn: r962
This commit is contained in:
Don Allingham 2002-05-06 01:31:24 +00:00
parent a3b90db30e
commit 2fd8d68073
2 changed files with 6 additions and 12 deletions

View File

@ -812,16 +812,10 @@ class SingleDate:
mon = string.lower(matches[2])
else:
mon = string.lower(matches[2])[0:l]
if month_map.has_key(mon):
self.setYear(int(matches[3]))
self.setMonth(month_map[mon]+1)
self.setDay(int(matches[1]))
return
else:
self.setYear(int(matches[3]))
self.setMonth(UNDEF)
self.setDay(UNDEF)
return
self.setYear(int(matches[3]))
self.setMonthStr(mon)
self.setDay(int(matches[1]))
return
match = SingleDate.fmt3.match(text)
if match:
matches = match.groups()
@ -840,7 +834,7 @@ class SingleDate:
else:
mon = string.lower(matches[1])[0:l]
self.setYearVal(matches[2])
self.setMonth(month_map[mon]+1)
self.setMonthStr(mon)
self.day = UNDEF
return

View File

@ -92,7 +92,7 @@ startup = 1
#
#-------------------------------------------------------------------------
progName = "GRAMPS"
version = "0.7.3-snap20020414"
version = "0.7.3"
copyright = "© 2001 Donald N. Allingham"
authors = ["Donald N. Allingham", "David Hampton","Donald A. Peterson"]
comments = _("GRAMPS (Genealogical Research and Analysis "