From ce34554211887aaa0a493f6ebafec3f0381021ac Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Mon, 25 Nov 2024 11:14:50 +0000 Subject: [PATCH] fixed incorrect error message --- norg/borg/create.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/norg/borg/create.nim b/norg/borg/create.nim index 4ac29a0..a7d8475 100644 --- a/norg/borg/create.nim +++ b/norg/borg/create.nim @@ -20,7 +20,7 @@ proc createArchive(nc: NorgConfig, repo: Repository, archivename: string, retry: let further_args = nc.args.further_args let res = run genCreateCommand(repo = archivename, sources = nc.source_directories, stats=nc.args.stats, exc=nc.exclusions, further_args = further_args) if res != 0: - info "Failed to run Restic. Waiting 15 seconds and trying again" + info "Failed to run Borg. Waiting 15 seconds and trying again" sleep 15 * 1000 # 15 seconds if retry == nc.retries: return 1