From 82685d2545a4740609df91ec2b985e3fd73dbb21 Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Tue, 11 May 2021 16:11:49 +0530 Subject: [PATCH] fix: Convert multi-line translation string to single --- frappe/core/doctype/data_import/importer.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frappe/core/doctype/data_import/importer.py b/frappe/core/doctype/data_import/importer.py index 0eb1752d78..d3f981add4 100644 --- a/frappe/core/doctype/data_import/importer.py +++ b/frappe/core/doctype/data_import/importer.py @@ -929,10 +929,7 @@ class Column: self.warnings.append( { "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", } )