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
parent
3dfdc9b97a
commit
67c0e28789
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
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in New Issue