Skip to content

Commit

Permalink
Add missing change to recurseImport
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr committed Apr 30, 2021
1 parent 8e9e3ef commit 0ad764c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Utilities/ObjectLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def getObjects(self, modulePath, reFilter=None, parentClass=None, recurse=False,
if modKeyName in modules:
continue
fullName = "%s.%s" % (impPath, modName)
result = recurseImport(modName, parentModule=parentModule, fullName=fullName)
result = recurseImport(fullName)
if not result['OK']:
if continueOnError:
gLogger.error("Error loading module but continueOnError is true", "module %s error %s" % (fullName, result))
Expand Down

0 comments on commit 0ad764c

Please sign in to comment.