Skip to content
Snippets Groups Projects
Commit 5fc3dbfb authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Fix UnboundLocalError in GaudiKernel/Configurable.py

See merge request !1399
parents 1e974a8b a084c918
No related branches found
No related tags found
No related merge requests found
......@@ -1405,7 +1405,7 @@ class ConfigurableUser(Configurable):
for queried in self.__queried_configurables__:
try:
if type(queried) is str:
queried = confDbGetConfigurable(used)
queried = confDbGetConfigurable(queried)
inst = queried(_enabled=False)
except AttributeError:
inst = queried()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment