Fixed shared, not_shared in cli

This commit is contained in:
Rhet Turnbull
2020-10-24 09:03:34 -07:00
parent a416de29e4
commit 8551981f68
2 changed files with 3 additions and 1 deletions

View File

@@ -1020,6 +1020,7 @@ def query(
(panorama, not_panorama), (panorama, not_panorama),
(any(place), no_place), (any(place), no_place),
(deleted, deleted_only), (deleted, deleted_only),
(shared, not_shared),
] ]
# print help if no non-exclusive term or a double exclusive term is given # print help if no non-exclusive term or a double exclusive term is given
if any(all(bb) for bb in exclusive) or not any( if any(all(bb) for bb in exclusive) or not any(
@@ -1435,6 +1436,7 @@ def export(
(deleted, deleted_only), (deleted, deleted_only),
(skip_edited, skip_original_if_edited), (skip_edited, skip_original_if_edited),
(export_as_hardlink, convert_to_jpeg), (export_as_hardlink, convert_to_jpeg),
(shared, not_shared),
] ]
if any(all(bb) for bb in exclusive): if any(all(bb) for bb in exclusive):
click.echo("Incompatible export options", err=True) click.echo("Incompatible export options", err=True)

View File

@@ -1,4 +1,4 @@
""" version info """ """ version info """
__version__ = "0.35.5" __version__ = "0.35.6"