Selaa lähdekoodia

[minor] mandatory error msg fix

version-14
Anand Doshi 11 vuotta sitten
vanhempi
commit
8fad8f7aa8
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      webnotes/model/bean.py

+ 1
- 1
webnotes/model/bean.py Näytä tiedosto

@@ -404,7 +404,7 @@ class Bean:
elif doc.fields.get(df.fieldname) is None:
msg = _("Error") + ": "
if doc.parentfield:
msg += _("Row") + (" # %d: " % doc.idx)
msg += _("Row") + (" # %s: " % (doc.idx,))
msg += _("Value missing for") + ": " + _(df.label)


Ladataan…
Peruuta
Tallenna