Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
{RBAC} update syntax error of error message
  • Loading branch information
arrownj committed Mar 4, 2020
commit e3ec50b9330231fe57cedb2322e3825f2b7d231d
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _validate_group(namespace, attr, value, group_filter, has_next_filter):
if not has_next_filter:
raise CLIError("No group matches the name of '{}'".format(value))
else:
raise CLIError("More than one groups match the name of '{}'".format(value))
raise CLIError("More than one group match the name of '{}'".format(value))
return ret


Expand Down