summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bazarr/utilities/backup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bazarr/utilities/backup.py b/bazarr/utilities/backup.py
index 314200a02..8088a50a2 100644
--- a/bazarr/utilities/backup.py
+++ b/bazarr/utilities/backup.py
@@ -151,6 +151,8 @@ def restore_from_backup():
try:
os.remove(restore_config_path)
+ except FileNotFoundError:
+ pass
except OSError:
logging.exception(f'Unable to delete {dest_config_path}')