소스 검색

--nobsdflags does not exist any more

it was replaced by --noflags.
Thomas Waldmann 2 년 전
부모
커밋
e54f109afa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/borg/archiver/common.py

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

@@ -257,7 +257,7 @@ def with_archive(method):
             manifest,
             archive_name,
             numeric_ids=getattr(args, "numeric_ids", False),
-            noflags=getattr(args, "nobsdflags", False) or getattr(args, "noflags", False),
+            noflags=getattr(args, "noflags", False),
             noacls=getattr(args, "noacls", False),
             noxattrs=getattr(args, "noxattrs", False),
             cache=kwargs.get("cache"),