Skip to content

Commit

Permalink
Merge pull request boto#214 from yoichi/fix-sample-code-in-tutorial
Browse files Browse the repository at this point in the history
fix variable name to be printed
  • Loading branch information
rayluo committed Aug 20, 2015
2 parents 0578ec9 + 9bacfb2 commit 36a70e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/guide/sqs.rst
Expand Up @@ -142,7 +142,7 @@ Messages are processed in batches::
author_text = ' ({0})'.format(author_name)

# Print out the body and author (if set)
print('Hello, {0}!{1}'.format(message.body, author_name))
print('Hello, {0}!{1}'.format(message.body, author_text))

# Let the queue know that the message is processed
message.delete()
Expand Down

0 comments on commit 36a70e0

Please sign in to comment.