add empty prints

This commit is contained in:
Andreas Zweili 2016-12-13 16:13:40 +01:00
parent e5516ac2b7
commit e93f6a610a
1 changed files with 5 additions and 2 deletions

View File

@ -64,9 +64,12 @@ while chosen_activity != 0:
working_directory = os.system('pwd')
if not os.path.exists(restore_path):
os.makedirs(restore_path)
p = subprocess.Popen(['borg', 'extract', '-v', '--list', '::'
+ archive_name], cwd=restore_path)
p = subprocess.Popen(['borg', 'extract', ':: + archive_name],
cwd=restore_path)
p.wait()
print()
print("Archive extracted to " + restore_path)
print()
elif chosen_activity == 0:
if (not mount_point):
print()