5285: Add a blank entry on countries list (same as Calendar)
svn: r18260
This commit is contained in:
parent
d05ff328c3
commit
e7580e774c
@ -376,10 +376,11 @@ class CalendarOptions(MenuReportOptions):
|
|||||||
|
|
||||||
country = EnumeratedListOption(_("Country for holidays"), 0)
|
country = EnumeratedListOption(_("Country for holidays"), 0)
|
||||||
holiday_table = libholiday.HolidayTable()
|
holiday_table = libholiday.HolidayTable()
|
||||||
holiday_table.sort()
|
countries = holiday_table.get_countries()
|
||||||
if (len(holiday_table) == 0 or
|
countries.sort()
|
||||||
(len(holiday_table) > 0 and holiday_table[0] != '')):
|
if (len(countries) == 0 or
|
||||||
holiday_table.insert(0, '')
|
(len(countries) > 0 and countries[0] != '')):
|
||||||
|
countries.insert(0, '')
|
||||||
count = 0
|
count = 0
|
||||||
for c in holiday_table.get_countries():
|
for c in holiday_table.get_countries():
|
||||||
country.add_item(count, c)
|
country.add_item(count, c)
|
||||||
|
Loading…
Reference in New Issue
Block a user