summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ishtar_common/data_importer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/data_importer.py b/ishtar_common/data_importer.py
index e222fa0f3..9d470a084 100644
--- a/ishtar_common/data_importer.py
+++ b/ishtar_common/data_importer.py
@@ -1075,11 +1075,11 @@ class Importer(object):
if not value:
continue
current_data[key] = (
- (current_data[key] + (concat_str or ""))
+ (str(current_data[key]) + (concat_str or ""))
if current_data[key]
else ""
)
- current_data[key] += value
+ current_data[key] += str(value)
elif force_value and value:
if concat_str and key in current_data and current_data[key]:
current_data[key] = (