Michael Pasternak has uploaded a new change for review. Change subject: cli: valid UUIDs are treated as syntax error #854391 ......................................................................
cli: valid UUIDs are treated as syntax error #854391 https://bugzilla.redhat.com/show_bug.cgi?id=854391 Change-Id: Idf952c3ee1447ca2e0a5f695877addcc705625dd Signed-off-by: Michael Pasternak <[email protected]> --- M src/cli/parser.py 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine-cli refs/changes/00/7900/1 diff --git a/src/cli/parser.py b/src/cli/parser.py index 79c62c1..e3ebb38 100644 --- a/src/cli/parser.py +++ b/src/cli/parser.py @@ -166,7 +166,8 @@ p[0] = p[1] + [p[2]] def p_argument(self, p): - """argument : WORD + """argument : UUID + | WORD | STRING """ p[0] = p[1] -- To view, visit http://gerrit.ovirt.org/7900 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Idf952c3ee1447ca2e0a5f695877addcc705625dd 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
