From 81ad42e029016211a1e834ccc0e31eb662525054 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 15 Dec 2020 10:49:40 +0100 Subject: [PATCH] Fix typo in log message when completing snapshot (#2367) --- supervisor/snapshots/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/snapshots/__init__.py b/supervisor/snapshots/__init__.py index 4cd2cfdce..1452d5d83 100644 --- a/supervisor/snapshots/__init__.py +++ b/supervisor/snapshots/__init__.py @@ -150,7 +150,7 @@ class SnapshotManager(CoreSysAttributes): return None 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 return snapshot