소스 검색

upgrade: remove short option for --inplace

Marian Beermann 8 년 전
부모
커밋
3f72790b5d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/borg/archiver.py

+ 1 - 1
src/borg/archiver.py

@@ -3485,7 +3485,7 @@ class Archiver:
         subparser.add_argument('-n', '--dry-run', dest='dry_run',
                                default=False, action='store_true',
                                help='do not change repository')
-        subparser.add_argument('-i', '--inplace', dest='inplace',
+        subparser.add_argument('--inplace', dest='inplace',
                                default=False, action='store_true',
                                help="""rewrite repository in place, with no chance of going back to older
                                versions of the repository.""")