mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -147,7 +147,7 @@ def invoice_to_lco(invoice):
|
||||
|
||||
# Write the entries
|
||||
ent_str = u""
|
||||
locale.setlocale(locale.LC_ALL, "de_DE")
|
||||
locale.setlocale(locale.LC_ALL, "")
|
||||
for n, ent in enumerate(invoice.GetEntries()):
|
||||
|
||||
line_str = u""
|
||||
|
||||
Reference in New Issue
Block a user