From 6bf64ca60c6914fd11f09b25452bf42950ee9fd2 Mon Sep 17 00:00:00 2001 From: Shahzad Malik Muzaffar Date: Thu, 7 Oct 2021 10:37:05 +0200 Subject: [PATCH] [Py3] Fix cmsDriver.py for --profile options --- Configuration/Applications/python/ConfigBuilder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configuration/Applications/python/ConfigBuilder.py b/Configuration/Applications/python/ConfigBuilder.py index af2e73e462b4f..b8b5719dc3938 100644 --- a/Configuration/Applications/python/ConfigBuilder.py +++ b/Configuration/Applications/python/ConfigBuilder.py @@ -302,8 +302,8 @@ def profileOptions(self): profilerFormat = "%s___%s___%%I.gz" % ( self._options.evt_type.replace("_cfi", ""), hashlib.md5( - str(self._options.step) + str(self._options.pileup) + str(self._options.conditions) + - str(self._options.datatier) + str(self._options.profileTypeLabel) + (str(self._options.step) + str(self._options.pileup) + str(self._options.conditions) + + str(self._options.datatier) + str(self._options.profileTypeLabel)).encode('utf-8') ).hexdigest() ) if not profilerJobFormat and profilerFormat.endswith(".gz"):