From 2c6bb4d376812ab55f66df17cf219335b2988dd2 Mon Sep 17 00:00:00 2001 From: Peter Onyisi <ponyisi@utexas.edu> Date: Fri, 15 Mar 2019 13:55:54 +0100 Subject: [PATCH] Fix TCT failing due to syntax error --- .../InDetEventCnv/InDetPrepRawDataToxAOD/share/InDetDxAOD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InnerDetector/InDetEventCnv/InDetPrepRawDataToxAOD/share/InDetDxAOD.py b/InnerDetector/InDetEventCnv/InDetPrepRawDataToxAOD/share/InDetDxAOD.py index 6b51841abe7..09902f3087d 100644 --- a/InnerDetector/InDetEventCnv/InDetPrepRawDataToxAOD/share/InDetDxAOD.py +++ b/InnerDetector/InDetEventCnv/InDetPrepRawDataToxAOD/share/InDetDxAOD.py @@ -413,7 +413,7 @@ if dumpPixInfo: from AthenaCommon.AlgSequence import AthSequencer condSeq = AthSequencer("AthCondSeq") - if not hasattr(condSeq, "PixelDCSCondStateAlg"): + if not hasattr(condSeq, "PixelDCSCondStateAlg"): from PixelConditionsAlgorithms.PixelConditionsAlgorithmsConf import PixelDCSCondStateAlg condSeq += PixelDCSCondStateAlg(name="PixelDCSCondStateAlg") -- GitLab