From 6d9b01698e04d3fddded3fe40f5eb28689df672e Mon Sep 17 00:00:00 2001 From: Gitlab CI <noreply@cern.ch> Date: Fri, 27 Nov 2020 12:23:42 +0000 Subject: [PATCH] Fixed formatting patch generated by https://gitlab.cern.ch/vavolkl/Gaudi/-/jobs/11070761 --- GaudiKernel/scripts/genconfuser.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GaudiKernel/scripts/genconfuser.py b/GaudiKernel/scripts/genconfuser.py index 6879ebd4b..45f77cf6d 100755 --- a/GaudiKernel/scripts/genconfuser.py +++ b/GaudiKernel/scripts/genconfuser.py @@ -121,7 +121,7 @@ def getConfigurableUsers(modulename, root, mayNotExist=False): g, l = {}, {} try: logging.verbose("importing %s", shortmodname) - exec ("import %s as mod" % shortmodname, g, l) + exec("import %s as mod" % shortmodname, g, l) finally: # restore old sys.path logging.verbose("restoring old sys.path") @@ -202,7 +202,8 @@ def main(): args = [package_name + ".Configuration"] usingConvention = True - genConfDir = os.path.join("..", os.environ.get("CMTCONFIG", ""), "genConfDir") + genConfDir = os.path.join("..", os.environ.get("CMTCONFIG", ""), + "genConfDir") if not os.path.exists(genConfDir): genConfDir = os.path.join("..", "genConfDir") -- GitLab