Browse Source

Moved session_token to the end of the argument list

pull/298/head
Bart S 7 years ago
committed by GitHub
parent
commit
64a453632f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      octodns/provider/route53.py

+ 2
- 2
octodns/provider/route53.py View File

@ -240,8 +240,8 @@ class Route53Provider(BaseProvider):
HEALTH_CHECK_VERSION = '0001'
def __init__(self, id, access_key_id=None, secret_access_key=None,
session_token=None, max_changes=1000,
client_max_attempts=None, *args, **kwargs):
max_changes=1000, client_max_attempts=None,
session_token=None, *args, **kwargs):
self.max_changes = max_changes
_msg = 'access_key_id={}, secret_access_key=***, ' \
'session_token=***'.format(access_key_id)


Loading…
Cancel
Save