@@ -33,7 +33,7 @@ def borg_import(args, archive_name, path, timestamp=None):
3333 except subprocess .CalledProcessError as cpe :
3434 if cpe .returncode != 1 :
3535 raise
36- log .debug ("Borg exited with a warning (being quiet about it since Borg spoke already)" )
36+ log .debug ("Borg exited with a warning (not repeating details since Borg already reported them )" )
3737
3838
3939def list_borg_archives (args ):
@@ -72,7 +72,7 @@ class rsnapshotImporter(Importer):
7272
7373 The directory is called "borg-import-dir" inside the rsnapshot root,
7474 and borg-import will note which snapshot is currently located there
75- in a file called "borg-import-dir.snapshot" besides it, in case
75+ in a file called "borg-import-dir.snapshot" beside it, in case
7676 things go wrong.
7777
7878 Otherwise nothing in the rsnapshot root is modified, and neither
@@ -146,7 +146,7 @@ def import_rsnapshot(self, args):
146146
147147class rsynchlImporter (Importer ):
148148 name = "rsynchl"
149- description = "import rsync+hardlink backups"
149+ description = "import rsync-with-hard-links backups"
150150 epilog = """
151151 Imports from rsync backup sets by renaming each snapshot to a common
152152 name independent of the snapshot, which allows the Borg files cache
@@ -159,7 +159,7 @@ class rsynchlImporter(Importer):
159159
160160 The directory is called "borg-import-dir" inside the specified root,
161161 and borg-import will note which snapshot is currently located there
162- in a file called "borg-import-dir.snapshot" besides it, in case
162+ in a file called "borg-import-dir.snapshot" beside it, in case
163163 things go wrong.
164164
165165 Otherwise nothing in the rsync root is modified, and neither
@@ -237,7 +237,7 @@ class rsyncTmBackupImporter(Importer):
237237
238238 The directory is called "borg-import-dir" inside the specified root,
239239 and borg-import will note which snapshot is currently located there
240- in a file called "borg-import-dir.snapshot" besides it, in case
240+ in a file called "borg-import-dir.snapshot" beside it, in case
241241 things go wrong.
242242
243243 Otherwise nothing in the rsync root is modified, and neither
@@ -305,7 +305,7 @@ class borgImporter(Importer):
305305 This is useful when a Borg repository needs to be rebuilt and all archives
306306 transferred from the old repository to a new one.
307307
308- The importer extracts each archive from the source repository to a intermediate
308+ The importer extracts each archive from the source repository to an intermediate
309309 directory inside the current work directory (make sure there is enough space!)
310310 and then creates a new archive with the same name and timestamp in the destination
311311 repository.
@@ -419,7 +419,7 @@ def build_parser():
419419
420420def main ():
421421 if not shutil .which ("borg" ):
422- print ("The 'borg' command can't be found in the PATH. Please correctly install borgbackup first." )
422+ print ("The 'borg' command cannot be found in PATH. Please install BorgBackup first." )
423423 print ("See instructions at https://borgbackup.readthedocs.io/en/stable/installation.html" )
424424 return 1
425425
0 commit comments