latex_invoices.py: use default locale

Don't hardcode a locale.  Empty string means to use the user's locale
(e.g. $LANG)
This commit is contained in:
Steven Walter
2021-08-01 22:17:11 -04:00
parent ad3895fa07
commit ba4852a9da

View File

@@ -147,7 +147,7 @@ def invoice_to_lco(invoice):
# Write the entries # Write the entries
ent_str = u"" ent_str = u""
locale.setlocale(locale.LC_ALL, "de_DE") locale.setlocale(locale.LC_ALL, "")
for n, ent in enumerate(invoice.GetEntries()): for n, ent in enumerate(invoice.GetEntries()):
line_str = u"" line_str = u""