Michael Pasternak has uploaded a new change for review. Change subject: cli: subcollection are not listed not shown #854047 ......................................................................
cli: subcollection are not listed not shown #854047 https://bugzilla.redhat.com/show_bug.cgi?id=854047 Change-Id: I8510ce4294719b4a4fa1f4693b47e072b3530397 Signed-off-by: Michael Pasternak <[email protected]> --- M src/ovirtcli/command/command.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine-cli refs/changes/26/7726/1 diff --git a/src/ovirtcli/command/command.py b/src/ovirtcli/command/command.py index 0e9ee87..cffe8ba 100644 --- a/src/ovirtcli/command/command.py +++ b/src/ovirtcli/command/command.py @@ -220,7 +220,7 @@ kw[k.replace('-', '.')] = v mopts = {} for k, v in opts.iteritems(): - if k != query_arg and k != kwargs_arg: + if k != query_arg and k != kwargs_arg and not k.endswith('-identifier'): mopts[k if not k.startswith('--') else k[2:]] = v kw.update(mopts) -- To view, visit http://gerrit.ovirt.org/7726 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8510ce4294719b4a4fa1f4693b47e072b3530397 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine-cli Gerrit-Branch: master Gerrit-Owner: Michael Pasternak <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
