Browse Source

fix: Convert multi-line translation string to single

version-14
Gavin D'souza 4 years ago
parent
commit
82685d2545
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      frappe/core/doctype/data_import/importer.py

+ 1
- 4
frappe/core/doctype/data_import/importer.py View File

@@ -929,10 +929,7 @@ class Column:
self.warnings.append( self.warnings.append(
{ {
"col": self.column_number, "col": self.column_number,
"message": _(
"Date format could not be determined from the values in"
" this column. Defaulting to yyyy-mm-dd."
),
"message": _("Date format could not be determined from the values in this column. Defaulting to yyyy-mm-dd."),
"type": "info", "type": "info",
} }
) )


Loading…
Cancel
Save