summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmat24
1 files changed, 2 insertions, 2 deletions
diff --git a/mat2 b/mat2
index e970d98..8bc08af 100755
--- a/mat2
+++ b/mat2
@@ -57,8 +57,8 @@ def create_arg_parser() -> argparse.ArgumentParser:
57 ', '.join(p.value for p in UnknownMemberPolicy)) 57 ', '.join(p.value for p in UnknownMemberPolicy))
58 parser.add_argument('--inplace', action='store_true', 58 parser.add_argument('--inplace', action='store_true',
59 help='clean in place, without backup') 59 help='clean in place, without backup')
60 parser.add_argument('--no-sandbox', dest='sandbox', action='store_true', 60 parser.add_argument('--no-sandbox', dest='sandbox', action='store_false',
61 default=False, help='Disable bubblewrap\'s sandboxing') 61 default=True, help='Disable bubblewrap\'s sandboxing')
62 62
63 excl_group = parser.add_mutually_exclusive_group() 63 excl_group = parser.add_mutually_exclusive_group()
64 excl_group.add_argument('files', nargs='*', help='the files to process', 64 excl_group.add_argument('files', nargs='*', help='the files to process',