From c51496ad2fbd2f5a710ec5481e6d146f894c0668 Mon Sep 17 00:00:00 2001 From: Ludeeus Date: Tue, 13 Apr 2021 13:06:32 +0000 Subject: [PATCH] add missing id --- 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 9f4f4c329..ca381a71c 100644 --- a/supervisor/jobs/__init__.py +++ b/supervisor/jobs/__init__.py @@ -76,7 +76,7 @@ class SupervisorJob(CoreSysAttributes): ) -> None: """Update the job object.""" if progress is not None: - if progress >= round(100) and self.parrent is None: + if progress >= round(100) and self.parrent_id is None: self.sys_jobs.remove_job(self) return self._progress = round(progress)