From bc0800c18f5bd12ff65fc79abffa4588a290ccae Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Sat, 28 Feb 2009 00:35:30 +0000 Subject: [PATCH] Remove debugging information. svn: r12153 --- src/plugins/webreport/WebCal.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/plugins/webreport/WebCal.py b/src/plugins/webreport/WebCal.py index 65bf811b1..c4d8fa2ed 100644 --- a/src/plugins/webreport/WebCal.py +++ b/src/plugins/webreport/WebCal.py @@ -1371,20 +1371,13 @@ def _get_short_name(person, maiden_name=None): if " " in first_name: # just one split max first_name, rest = first_name.split(" ", 1) - print first_name, family_name return ("%s %s" % (first_name, family_name)).strip() # Simple utility list to convert Gramps day-of-week numbering # to calendar.firstweekday numbering -dow_gramps2iso = [ -1, - calendar.SUNDAY, - calendar.MONDAY, - calendar.TUESDAY, - calendar.WEDNESDAY, - calendar.THURSDAY, - calendar.FRIDAY, - calendar.SATURDAY, - ] +dow_gramps2iso = [ -1, calendar.SUNDAY, calendar.MONDAY, calendar.TUESDAY, + calendar.WEDNESDAY, calendar.THURSDAY, calendar.FRIDAY, + calendar.SATURDAY] # define names for full and abbreviated month names in GrampsLocale full_month_name = GrampsLocale.long_months