diff options
author | James Saryerwinnie <js@jamesls.com> | 2013-01-23 18:35:49 -0800 |
---|---|---|
committer | James Saryerwinnie <js@jamesls.com> | 2013-01-23 18:35:49 -0800 |
commit | 1737c6b103d1c715df49561a6ff5dd4ba82dd4dd (patch) | |
tree | 80f2f18f351ede95a8d73da54769f6c64372a52e /docs/source | |
parent | d5f582d8d266b6b9ea3809d3d041aad96f59d158 (diff) | |
download | boto-1737c6b103d1c715df49561a6ff5dd4ba82dd4dd.tar.gz |
Break long line into multiple lines in sqs tutorial
Otherwise you'll get a horizontal scrollbar in the
code snippet.
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/sqs_tut.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/source/sqs_tut.rst b/docs/source/sqs_tut.rst index 685c30ff..a57c2c27 100644 --- a/docs/source/sqs_tut.rst +++ b/docs/source/sqs_tut.rst @@ -14,7 +14,10 @@ The first step in accessing SQS is to create a connection to the service. The recommended method of doing this is as follows:: >>> import boto.sqs - >>> conn = boto.sqs.connect_to_region("us-east-1", aws_access_key_id= '<aws access key'>, aws_secret_access_key='<aws secret key>') + >>> conn = boto.sqs.connect_to_region( + ... "us-east-1", + ... aws_access_key_id='<aws access key'>, + ... aws_secret_access_key='<aws secret key>') At this point the variable conn will point to an SQSConnection object in the US-EAST-1 region. Bear in mind that just as any other AWS service, SQS is |