Return month in unicode
svn: r1590
This commit is contained in:
parent
6573ceac21
commit
7433652b39
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2001 Donald N. Allingham
|
# Copyright (C) 2001-2003 Donald N. Allingham
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -149,7 +149,7 @@ class Calendar:
|
|||||||
|
|
||||||
def month(self,val):
|
def month(self,val):
|
||||||
try:
|
try:
|
||||||
return Calendar.MONTHS[val-1]
|
return unicode(Calendar.MONTHS[val-1])
|
||||||
except:
|
except:
|
||||||
return "Illegal Month"
|
return "Illegal Month"
|
||||||
|
|
||||||
@ -439,7 +439,7 @@ class Calendar:
|
|||||||
if match != None:
|
if match != None:
|
||||||
matches = match.groups()
|
matches = match.groups()
|
||||||
mode = self.set_mode_value(matches[0])
|
mode = self.set_mode_value(matches[0])
|
||||||
month = self.set_month_string(matches[2])
|
month = self.set_month_string(unicode(matches[2]))
|
||||||
if month != UNDEF:
|
if month != UNDEF:
|
||||||
day = self.set_value(matches[1])
|
day = self.set_value(matches[1])
|
||||||
if len(matches) == 4 and matches[3] != None:
|
if len(matches) == 4 and matches[3] != None:
|
||||||
|
Loading…
Reference in New Issue
Block a user