From e7935f0e0d4f1c6364b293f51e0948c9f36d9e81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Fri, 7 Oct 2011 10:20:21 +0000 Subject: [PATCH] 5285: Add a blank entry on countries list svn: r18255 --- src/plugins/textreport/BirthdayReport.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/textreport/BirthdayReport.py b/src/plugins/textreport/BirthdayReport.py index dfe81ff8b..44051abd8 100644 --- a/src/plugins/textreport/BirthdayReport.py +++ b/src/plugins/textreport/BirthdayReport.py @@ -370,6 +370,10 @@ class CalendarOptions(MenuReportOptions): country = EnumeratedListOption(_("Country for holidays"), 0) holiday_table = libholiday.HolidayTable() + holiday_table.sort() + if (len(holiday_table) == 0 or + (len(holiday_table) > 0 and holiday_table[0] != '')): + holiday_table.insert(0, '') count = 0 for c in holiday_table.get_countries(): country.add_item(count, c)