diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-18 14:14:57 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-19 14:45:57 +0100 | 
| commit | 051ad17e717fd935db69b7057e9a3862b276cf23 (patch) | |
| tree | 716af81305caea779af0a89005914344875628d6 | |
| parent | 90b65123f6740eb6c5683f92f0c4d304c656c37b (diff) | |
| download | Ishtar-051ad17e717fd935db69b7057e9a3862b276cf23.tar.bz2 Ishtar-051ad17e717fd935db69b7057e9a3862b276cf23.zip | |
🐛 imports: fix concat with non string
| -rw-r--r-- | ishtar_common/data_importer.py | 4 | 
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] = ( | 
