Browse Source

export-tar: switch default to PAX format

Python 3.8's tarfile module did the same.
Thomas Waldmann 8 months ago
parent
commit
2ed5d6b101
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/borg/archiver/tar_cmds.py

+ 1 - 1
src/borg/archiver/tar_cmds.py

@@ -396,7 +396,7 @@ class TarMixIn:
             "--tar-format",
             metavar="FMT",
             dest="tar_format",
-            default="GNU",
+            default="PAX",
             choices=("BORG", "PAX", "GNU"),
             action=Highlander,
             help="select tar format: BORG, PAX or GNU",