Fix typo in log message when completing snapshot (#2367)

This commit is contained in:
Robin 2020-12-15 10:49:40 +01:00 committed by GitHub
parent 5d3695f8ba
commit 81ad42e029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ class SnapshotManager(CoreSysAttributes):
return None return None
else: else:
_LOGGER.info("Crating full-snapshot with slug %s completed", snapshot.slug) _LOGGER.info("Creating full-snapshot with slug %s completed", snapshot.slug)
self.snapshots_obj[snapshot.slug] = snapshot self.snapshots_obj[snapshot.slug] = snapshot
return snapshot return snapshot