From c93d5c6f4485e3e4dd8943ba4130f3fb7ea8f85d Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Fri, 10 Nov 2023 22:00:35 +0000 Subject: [PATCH] =?UTF-8?q?set.add()=20returns=20None=20=F0=9F=A4=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backupbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backupbot.py b/backupbot.py index 06d006c..6aae2b1 100755 --- a/backupbot.py +++ b/backupbot.py @@ -100,7 +100,7 @@ def get_backup_cmds(): path_ = Path(VOLUME_PATH) / f"{stack_name}_{mount['Source']}" logging.debug( f"Added backup path {path_}") - backup_paths = backup_paths.add(path_) + backup_paths.add(path_) if not (container := container_by_service.get(s.name)): logging.error( f"Container {s.name} is not running, hooks can not be executed")