From eeb6f72ea35ff1ee4e59e2636298a13ab0a4de2c Mon Sep 17 00:00:00 2001 From: Walter Lampl <Walter.Lampl@cern.ch> Date: Fri, 21 Aug 2020 12:43:33 +0200 Subject: [PATCH] MetaReader: Work-around strange bug converting std::vector to python list --- Tools/PyUtils/python/MetaReader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/PyUtils/python/MetaReader.py b/Tools/PyUtils/python/MetaReader.py index 7916114f9b3b..53d4c6f82fd7 100644 --- a/Tools/PyUtils/python/MetaReader.py +++ b/Tools/PyUtils/python/MetaReader.py @@ -573,7 +573,7 @@ def _extract_fields_esi(value): result['numberOfEvents'] = value.m_numberOfEvents result['runNumbers'] = list(value.m_runNumbers) result['lumiBlockNumbers'] = list(value.m_lumiBlockNumbers) - result['processingTags'] = list(value.m_processingTags) + result['processingTags'] = [str(v) for v in value.m_processingTags] result['itemList'] = [] # Get the class name in the repository with CLID <clid> -- GitLab