* src/DateDisplay.py (_display_gregorian): Replace dashes with
slashes to prevent collision with the ISO format. svn: r5497
This commit is contained in:
parent
b43a0fcf46
commit
a09e1818c7
@ -1,3 +1,7 @@
|
||||
2005-12-07 Alex Roitman <shura@gramps-project.org>
|
||||
* src/DateDisplay.py (_display_gregorian): Replace dashes with
|
||||
slashes to prevent collision with the ISO format.
|
||||
|
||||
2005-12-07 Don Allingham <don@gramps-project.org>
|
||||
* src/plugins/NavWebPage.py: restore .tar.gz archive option
|
||||
|
||||
|
@ -228,6 +228,7 @@ class DateDisplay:
|
||||
value = self._tformat.replace('%m',str(date_val[1]))
|
||||
value = value.replace('%d',str(date_val[0]))
|
||||
value = value.replace('%Y',str(abs(date_val[2])))
|
||||
value = value.replace('-','/')
|
||||
elif self.format == 2:
|
||||
# Month Day, Year
|
||||
if date_val[0] == 0:
|
||||
|
Loading…
x
Reference in New Issue
Block a user