summaryrefslogtreecommitdiff
path: root/hosts/vidhar/borg/copy.py
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/vidhar/borg/copy.py')
-rwxr-xr-xhosts/vidhar/borg/copy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/vidhar/borg/copy.py b/hosts/vidhar/borg/copy.py
index db907297..6cfab881 100755
--- a/hosts/vidhar/borg/copy.py
+++ b/hosts/vidhar/borg/copy.py
@@ -41,7 +41,7 @@ halo_args = {
41def read_repo(path): 41def read_repo(path):
42 with Halo(text=f'Listing {path}', **halo_args) as sp: 42 with Halo(text=f'Listing {path}', **halo_args) as sp:
43 res = None 43 res = None
44 with subprocess.Popen(['borg', 'list', '--debug', '--lock-wait', '120', '--json', path], stdout=subprocess.PIPE) as proc: 44 with subprocess.Popen(['borg', 'list', '--info', '--lock-wait', '120', '--json', path], stdout=subprocess.PIPE) as proc:
45 res = json.load(proc.stdout)['archives'] 45 res = json.load(proc.stdout)['archives']
46 if sp.enabled: 46 if sp.enabled:
47 sp.succeed(f'{len(res)} archives in {path}') 47 sp.succeed(f'{len(res)} archives in {path}')