We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5f0f11 commit 3153637Copy full SHA for 3153637
1 file changed
satdigitalinvoice/formatting_functions/common.py
@@ -30,7 +30,7 @@ def porcentaje(k):
30
def fecha(date):
31
day_numero = num_letras(date.day)
32
anio_numero = num_letras(date.year)
33
- formated_d = format_date(date, locale=LOCALE, format="d '{0} de' MMMM 'del' yyyy '{1}'")
+ formated_d = format_date(date, locale=LOCALE, format="d '({0}) de' MMMM 'del' yyyy '({1})'")
34
return formated_d.format(day_numero, anio_numero).upper()
35
36
0 commit comments