From 42debfe397a06fc8e692a5e3cc2678f494332252 Mon Sep 17 00:00:00 2001 From: Marko Petric <marko.petric@cern.ch> Date: Mon, 17 Feb 2020 10:37:10 +0100 Subject: [PATCH] Fix unicode conversion --- DDRec/python/DDRec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DDRec/python/DDRec.py b/DDRec/python/DDRec.py index a8910f769..d25ca5997 100644 --- a/DDRec/python/DDRec.py +++ b/DDRec/python/DDRec.py @@ -98,5 +98,5 @@ def import_rec(): # Now instantiate the entire thing import_rec() -std_list_ISurface = core.std_list('ISurface*') -std_list_VolSurface = core.std_list('VolSurface') +std_list_ISurface = core.std_list(str('ISurface*')) +std_list_VolSurface = core.std_list(str('VolSurface')) -- GitLab