Fix typo when unreferencing skill after failed load
parent
7008969fd0
commit
02b49edc99
|
@ -232,7 +232,7 @@ class SkillLoader:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
# If an exception occurs, make sure to clean up the skill
|
# If an exception occurs, make sure to clean up the skill
|
||||||
self.instance.default_shutdown()
|
self.instance.default_shutdown()
|
||||||
self.instane = None
|
self.instance = None
|
||||||
log_msg = 'Skill initialization failed with {}'
|
log_msg = 'Skill initialization failed with {}'
|
||||||
LOG.exception(log_msg.format(repr(e)))
|
LOG.exception(log_msg.format(repr(e)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue