Skip to content
Snippets Groups Projects
Commit a73089f0 authored by Walter Lampl's avatar Walter Lampl
Browse files

hltResultMT.py: Explicit conversion of stl string to python string

parent 598764d3
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ def get_collection_name(raw_data_words):
ss.deserialize(name_raw_vec, name_str_vec)
name_list = []
for s in name_str_vec:
name_list.append(s)
name_list.append(str(s))
return name_list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment