Skip to content

Commit

Permalink
Fix "TypeError: generate_shorthand_example() got an unexpected keywor…
Browse files Browse the repository at this point in the history
…d argument 'servcice_name'

Fix initialization issue with Python 3.6 and AWS CLI 1.16.11 that prevent aws-shell to start
  • Loading branch information
benoit-sedoni authored Sep 11, 2018
1 parent 427b32d commit 3284bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awsshell/makeindex.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def index_command(index_dict, help_command):
service_name, op_name = help_command.event_class.rsplit('.', 1)
example = SHORTHAND_DOC.generate_shorthand_example(
cli_argument=arg_obj,
service_name=service_name,
service_id=service_name,
operation_name=op_name,
)
metadata['example'] = example
Expand Down

0 comments on commit 3284bc9

Please sign in to comment.