[minor] mandatory error msg fix

This commit is contained in:
Anand Doshi 2013-09-26 11:20:55 +05:30
parent ef6f1aafa6
commit 8fad8f7aa8

View file

@ -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)