Skip to content

Commit 3284bc9

Browse files
Fix "TypeError: generate_shorthand_example() got an unexpected keyword argument 'servcice_name'
Fix initialization issue with Python 3.6 and AWS CLI 1.16.11 that prevent aws-shell to start
1 parent 427b32d commit 3284bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

awsshell/makeindex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def index_command(index_dict, help_command):
4242
service_name, op_name = help_command.event_class.rsplit('.', 1)
4343
example = SHORTHAND_DOC.generate_shorthand_example(
4444
cli_argument=arg_obj,
45-
service_name=service_name,
45+
service_id=service_name,
4646
operation_name=op_name,
4747
)
4848
metadata['example'] = example

0 commit comments

Comments
 (0)