Remove debugging information.
svn: r12153
This commit is contained in:
parent
aea7ed8886
commit
bc0800c18f
@ -1371,20 +1371,13 @@ def _get_short_name(person, maiden_name=None):
|
|||||||
if " " in first_name:
|
if " " in first_name:
|
||||||
# just one split max
|
# just one split max
|
||||||
first_name, rest = first_name.split(" ", 1)
|
first_name, rest = first_name.split(" ", 1)
|
||||||
print first_name, family_name
|
|
||||||
return ("%s %s" % (first_name, family_name)).strip()
|
return ("%s %s" % (first_name, family_name)).strip()
|
||||||
|
|
||||||
# Simple utility list to convert Gramps day-of-week numbering
|
# Simple utility list to convert Gramps day-of-week numbering
|
||||||
# to calendar.firstweekday numbering
|
# to calendar.firstweekday numbering
|
||||||
dow_gramps2iso = [ -1,
|
dow_gramps2iso = [ -1, calendar.SUNDAY, calendar.MONDAY, calendar.TUESDAY,
|
||||||
calendar.SUNDAY,
|
calendar.WEDNESDAY, calendar.THURSDAY, calendar.FRIDAY,
|
||||||
calendar.MONDAY,
|
calendar.SATURDAY]
|
||||||
calendar.TUESDAY,
|
|
||||||
calendar.WEDNESDAY,
|
|
||||||
calendar.THURSDAY,
|
|
||||||
calendar.FRIDAY,
|
|
||||||
calendar.SATURDAY,
|
|
||||||
]
|
|
||||||
|
|
||||||
# define names for full and abbreviated month names in GrampsLocale
|
# define names for full and abbreviated month names in GrampsLocale
|
||||||
full_month_name = GrampsLocale.long_months
|
full_month_name = GrampsLocale.long_months
|
||||||
|
Loading…
Reference in New Issue
Block a user