diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-11-02 08:58:53 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-11-02 08:58:53 +0100 |
commit | b27a25f6d124751be8a29aaad9d54bf7169592aa (patch) | |
tree | 203a697f771d77e2f5c9c05799788d1f9d83d64e | |
parent | 530dd5664ef657026bfa563a5984d69f42e8bd57 (diff) | |
download | gemato-b27a25f6d124751be8a29aaad9d54bf7169592aa.tar.gz |
cli: Sorting is now profile-controlled
-rw-r--r-- | gemato/cli.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gemato/cli.py b/gemato/cli.py index 42454f3..ab03995 100644 --- a/gemato/cli.py +++ b/gemato/cli.py @@ -93,7 +93,6 @@ def do_update(args, argp): init_kwargs = {} save_kwargs = {} init_kwargs['hashes'] = args.hashes.split() - init_kwargs['sort'] = True if args.compress_watermark is not None: if args.compress_watermark < 0: argp.error('--compress-watermark must not be negative!') @@ -155,7 +154,6 @@ def do_create(args, argp): save_kwargs = {} init_kwargs['allow_create'] = True init_kwargs['hashes'] = args.hashes.split() - init_kwargs['sort'] = True if args.compress_watermark is not None: if args.compress_watermark < 0: argp.error('--compress-watermark must not be negative!') |