summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel G. Taylor <dan@programmer-art.org>2014-09-02 11:01:24 -0700
committerDaniel G. Taylor <dan@programmer-art.org>2014-09-02 11:01:24 -0700
commite926d2dbb1be9490a1d37c949093d99bd9c770c4 (patch)
treebafb2367d7e7b29d0fbc7920167a19c84fe93c63
parent3c83da965403bc4325c1a2e8927f77f3ffdf4368 (diff)
parenta228444c334165cd24c8a39f92622f4c5a12541d (diff)
downloadboto-e926d2dbb1be9490a1d37c949093d99bd9c770c4.tar.gz
Merge pull request #2569 from hvpareja/patch-1
Update count_slow documentation. Fixes #2569.
-rw-r--r--boto/sqs/queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/sqs/queue.py b/boto/sqs/queue.py
index 6bcae489..162ec93c 100644
--- a/boto/sqs/queue.py
+++ b/boto/sqs/queue.py
@@ -365,7 +365,7 @@ class Queue(object):
Deprecated. This is the old 'count' method that actually counts
the messages by reading them all. This gives an accurate count but
is very slow for queues with non-trivial number of messasges.
- Instead, use get_attribute('ApproximateNumberOfMessages') to take
+ Instead, use get_attributes('ApproximateNumberOfMessages') to take
advantage of the new SQS capability. This is retained only for
the unit tests.
"""