Skip to content

Commit 4f01f8f

Browse files
remove --sort deprecation to make tests succeed
1 parent 4a28cc8 commit 4f01f8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/borg/archiver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def print_file_status(self, status, path):
177177
def preprocess_args(self, args):
178178
deprecations = [
179179
# ('--old', '--new' or None, 'Warning: "--old" has been deprecated. Use "--new" instead.'),
180-
("--sort", None, 'Warning: "--sort" is deprecated. Use "--sort-by=path" instead.')
180+
# ("--sort", None, 'Warning: "--sort" is deprecated. Use "--sort-by=path" instead.')
181181
]
182182
for i, arg in enumerate(args[:]):
183183
for old_name, new_name, warning in deprecations:

0 commit comments

Comments
 (0)