From c827703417ad9d1bc29ddd07e87de0e7ffb0fdde Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Tue, 8 May 2018 13:47:02 +0200 Subject: [PATCH] Fix ignoring files --- cura/Backups/Backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Backups/Backup.py b/cura/Backups/Backup.py index 50f4383c31..af9083ffd7 100644 --- a/cura/Backups/Backup.py +++ b/cura/Backups/Backup.py @@ -65,7 +65,7 @@ class Backup: for file_name in files: # Add all files except the ignored ones. if file_name in self.IGNORED_FILES: - return + continue absolute_path = os.path.join(root, file_name) relative_path = absolute_path[len(root_path) + len(os.sep):] archive.write(absolute_path, relative_path)