# HG changeset patch # User Paul Boddie # Date 1302038665 -7200 # Node ID 5f7952d7dde728f9676d7e6754f0887d938dc16a # Parent 4889def7151ead2972cbbce2c55bb423d9135970 Added a fix to getFullMonthLabel, returning an empty string if the month is unspecified. (Originates from revision 128.) diff -r 4889def7151e -r 5f7952d7dde7 EventAggregatorSupport.py --- a/EventAggregatorSupport.py Mon Feb 21 01:05:37 2011 +0100 +++ b/EventAggregatorSupport.py Tue Apr 05 23:24:25 2011 +0200 @@ -1486,6 +1486,9 @@ 'year_month'. """ + if not year_month: + return "" + _ = request.getText year, month = year_month.as_tuple() month_label = _(getMonthLabel(month))