Skip to content
Snippets Groups Projects
Commit 89c844d2 authored by Christophe Haen's avatar Christophe Haen
Browse files

Explicitly depend on awkward for uproot

parent 03e280fd
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,8 @@ install_requires =
requests
six
uproot
# needed to extract guid with uproot
awkward
xmltodict
zip_safe = False
include_package_data = True
......
......@@ -45,8 +45,8 @@ def getRootFileGUID(fileName):
if item.startswith('FID='):
return S_OK(item.split('=')[1])
return S_ERROR('GUID not found')
except Exception:
errorMsg = 'Error extracting GUID'
except Exception as e:
errorMsg = 'Error extracting GUID: %s' % e
return S_ERROR(errorMsg)
......
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