Purge a stray space from calendar locale data

It was causing all lines after the first, in each calendar's
locale_data[], to be over-indented. This only changes spacing.

Change-Id: Ibfc4986548eecbfdba2902cc18f44a2af669bc6d
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
bb10
Edward Welbourne 2020-03-17 17:48:08 +01:00
parent 3dfdc9b97a
commit 67c0e28789
4 changed files with 1780 additions and 1780 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -403,7 +403,7 @@ class CalendarDataWriter (LocaleSourceEditor):
months_data.append(locale.shortMonths[calendar]),
months_data.append(locale.longMonths[calendar]),
months_data.append(locale.narrowMonths[calendar]))
+ '// {}/{}/{}\n '.format(locale.language, locale.script, locale.country))
+ '// {}/{}/{}\n'.format(locale.language, locale.script, locale.country))
self.writer.write(self.formatCalendar(*( (0,) * 3 + ('0,0',) * 6 ))
+ '// trailing zeros\n')
self.writer.write('};\n')