From ce6b793a27d0280b769da725bf51f0992fc2ae20 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Fri, 6 Aug 2021 18:33:07 +0200 Subject: [PATCH] btrbk_restore_raw.py: tidy help text --- contrib/tools/btrbk_restore_raw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/tools/btrbk_restore_raw.py b/contrib/tools/btrbk_restore_raw.py index 70d033f..0476ccb 100755 --- a/contrib/tools/btrbk_restore_raw.py +++ b/contrib/tools/btrbk_restore_raw.py @@ -174,7 +174,7 @@ def restore_backup(bfile, parents, options): def main(): parser = argparse.ArgumentParser(description="restore btrbk raw backup") parser.add_argument('backup', help="backup file to restore; for incremental" - "backups the parent files must be in the same directory") + " backups the parent files must be in the same directory") parser.add_argument('btrfs_subvol', help="btrfs subvolume to restore snapshots to using btrfs receive") parser.add_argument('--ignore-missing', action='store_true', help="do not fail on missing parent snapshots")