1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-27 10:18:12 +00:00

Merge pull request #1327 from enkore/issue/1324

Fix borg break-lock ignoring BORG_REPO env var
This commit is contained in:
TW 2016-07-14 14:41:30 +02:00 committed by GitHub
commit 361bf32735

View file

@ -1316,7 +1316,7 @@ def build_parser(self, args=None, prog=None):
formatter_class=argparse.RawDescriptionHelpFormatter,
help='break repository and cache locks')
subparser.set_defaults(func=self.do_break_lock)
subparser.add_argument('location', metavar='REPOSITORY',
subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
type=location_validator(archive=False),
help='repository for which to break the locks')