Skip to content

Commit

Permalink
Remove --format flag from add command
Browse files Browse the repository at this point in the history
    due to changes in keystone v3
  • Loading branch information
Vladimir Moravec committed Jan 6, 2016
1 parent c9c6ec6 commit d5e162f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cct/commands/openstack.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def create name, options={}
def add name, options={}
params.clear
yield params
all_params = ["add", name, "--format=shell"].concat(params.extract!(options))
all_params = ["add", name].concat(params.extract!(options))
OpenStruct.new(shell_parse(exec!(all_params).output))
end

Expand Down

0 comments on commit d5e162f

Please sign in to comment.