Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2018-09-28 13:34:00 +0300
committerLipu Fei <lipu.fei815@gmail.com>2018-09-28 13:34:00 +0300
commit6e2f7e72b699183bab9890bc6802f1fa95a71408 (patch)
tree7072f408eff5ce624aa51c417dfb57a085c3a455 /cura/Backups
parent3a01b63343668781cfcbb2bec84e8ec8d68d19b9 (diff)
Fix missing argument
Diffstat (limited to 'cura/Backups')
-rw-r--r--cura/Backups/BackupsManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/Backups/BackupsManager.py b/cura/Backups/BackupsManager.py
index 6dfb4ae8bd..a0d3881209 100644
--- a/cura/Backups/BackupsManager.py
+++ b/cura/Backups/BackupsManager.py
@@ -41,7 +41,7 @@ class BackupsManager:
self._disableAutoSave()
- backup = Backup(zip_file = zip_file, meta_data = meta_data)
+ backup = Backup(self._application, zip_file = zip_file, meta_data = meta_data)
restored = backup.restore()
if restored:
# At this point, Cura will need to restart for the changes to take effect.