Change default backup folder to HOME/Backups

Signed-off-by: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
This commit is contained in:
Veronica Berglyd Olsen
2023-08-08 19:59:57 +02:00
parent c40d910b69
commit 348e62cd3e
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -427,7 +427,7 @@ class NWProject(QObject):
backupPath = CONFIG.backupPath()
baseDir = backupPath / cleanName
try:
baseDir.mkdir(exist_ok=True)
baseDir.mkdir(exist_ok=True, parents=True)
except Exception as exc:
self.mainGui.makeAlert(self.tr(
"Could not create backup folder."