Skip to content

Commit c236fa1

Browse files
authored
Add missing close paren in error handling guide (#2934)
1 parent 7f476b5 commit c236fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/guide/error-handling.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Using a low-level Amazon SQS client, here’s an example of catching a generic o
259259
queue_url = 'SQS_QUEUE_URL'
260260
261261
try:
262-
client.send_message(QueueUrl=queue_url, MessageBody=('some_message')
262+
client.send_message(QueueUrl=queue_url, MessageBody=('some_message'))
263263
264264
except botocore.exceptions.ClientError as err:
265265
if err.response['Error']['Code'] == 'InternalError': # Generic error

0 commit comments

Comments
 (0)