Skip to content
Snippets Groups Projects
Commit fd9f9022 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

AthenaPython: Root 6.22 fix.

New pyroot spells template specializations with [], not ().
parent 87b59807
No related branches found
No related tags found
No related merge requests found
Pipeline #1994762 passed
......@@ -231,7 +231,7 @@ class FilePeeker(PyAthena.Alg):
spec = a.specification()
a_type = spec.typeName()
if a_type.find('string') >= 0:
a_data = a.data('string')()
a_data = a.data['string']()
try:
a_data = eval(a_data,{},{})
except Exception:
......
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