1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-15 10:56:30 +00:00

Merge pull request #4091 from m3nu/master

Add argument storage_quota to forced_result. Avoids override by client.
This commit is contained in:
TW 2018-10-03 17:33:29 +02:00 committed by GitHub
commit 62de891ada
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4140,6 +4140,7 @@ def get_args(self, argv, cmd):
result.restrict_to_paths = forced_result.restrict_to_paths
result.restrict_to_repositories = forced_result.restrict_to_repositories
result.append_only = forced_result.append_only
result.storage_quota = forced_result.storage_quota
return result
def parse_args(self, args=None):