From 11317e2033170610961aee30e3c1f8671f7ddcaa Mon Sep 17 00:00:00 2001 From: Thies Lennart Alff Date: Fri, 3 Jan 2025 12:16:31 +0100 Subject: [PATCH] fixed typo --- paperless-ngx_backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paperless-ngx_backup b/paperless-ngx_backup index b992479..0ea8244 100755 --- a/paperless-ngx_backup +++ b/paperless-ngx_backup @@ -53,7 +53,7 @@ class BackupManager: borg_env = os.environ.copy() borg_env["BORG_RSH"] = remote["BORG_RSH"] borg_env["BORG_PASSPHRASE"] = remote["BORG_PASSPHRASE"] - repo = f"ssh//{backup_user}@{remote_host}/{repo_prefix}/{local_host}/{repo_subdir}::{{{time_format}}}" + repo = f"ssh://{backup_user}@{remote_host}/{repo_prefix}/{local_host}/{repo_subdir}::{{{time_format}}}" cmd = f"borg create -v --stats {repo} {backup_dirs} --exclude {exclude_dirs}" try: result = subprocess.run(