From 443a43cc5b47c48df8e6b3601a7bf183b1af017f Mon Sep 17 00:00:00 2001 From: Ludeeus Date: Tue, 13 Apr 2021 12:48:38 +0000 Subject: [PATCH] hex is str --- supervisor/jobs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/jobs/__init__.py b/supervisor/jobs/__init__.py index 582b826b2..d76fcc86e 100644 --- a/supervisor/jobs/__init__.py +++ b/supervisor/jobs/__init__.py @@ -105,7 +105,7 @@ class JobManager(FileConfiguration, CoreSysAttributes): try: self.context.get() except LookupError: - self.context.set(str(uuid4().hex)) + self.context.set(uuid4().hex) context = self.context.get()