Fix typo when unreferencing skill after failed load

pull/2279/head
Åke Forslund 2019-08-30 14:57:27 +02:00
parent 7008969fd0
commit 02b49edc99
1 changed files with 1 additions and 1 deletions

View File

@ -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)))