Merge pull request #2279 from forslund/bugfix/typo

Fix typo when unreferencing skill after failed load
pull/2280/head
Åke 2019-08-30 15:07:23 +02:00 committed by GitHub
commit 34b6a911cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ class SkillLoader:
except Exception as e:
# If an exception occurs, make sure to clean up the skill
self.instance.default_shutdown()
self.instane = None
self.instance = None
log_msg = 'Skill initialization failed with {}'
LOG.exception(log_msg.format(repr(e)))