| Index: boto/mturk/connection.py
|
| diff --git a/boto/mturk/connection.py b/boto/mturk/connection.py
|
| index 9e8493f8c4dd142d1137a992549c0d22050deac0..e59da15c8f044327ffc5b113532d042f9ce09e6d 100644
|
| --- a/boto/mturk/connection.py
|
| +++ b/boto/mturk/connection.py
|
| @@ -560,8 +560,8 @@ class MTurkConnection(AWSQueryConnection):
|
|
|
| test_duration: the number of seconds a worker has to complete the test.
|
|
|
| - auto_granted: if True, requests for the Qualification are granted immediately.
|
| - Can't coexist with a test.
|
| + auto_granted: if True, requests for the Qualification are granted
|
| + immediately. Can't coexist with a test.
|
|
|
| auto_granted_value: auto_granted qualifications are given this value.
|
|
|
| @@ -572,7 +572,7 @@ class MTurkConnection(AWSQueryConnection):
|
| 'QualificationTypeStatus' : status,
|
| }
|
| if retry_delay is not None:
|
| - params['RetryDelay'] = retry_delay
|
| + params['RetryDelayInSeconds'] = retry_delay
|
|
|
| if test is not None:
|
| assert(isinstance(test, QuestionForm))
|
| @@ -629,7 +629,7 @@ class MTurkConnection(AWSQueryConnection):
|
| params['QualificationTypeStatus'] = status
|
|
|
| if retry_delay is not None:
|
| - params['RetryDelay'] = retry_delay
|
| + params['RetryDelayInSeconds'] = retry_delay
|
|
|
| if test is not None:
|
| assert(isinstance(test, QuestionForm))
|
|
|