Browse Source

Linting fix

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

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

@ -246,8 +246,7 @@ class Route53Provider(BaseProvider):
_msg = 'access_key_id={}, secret_access_key=***, ' \
'session_token=***'.format(access_key_id)
use_fallback_auth = access_key_id is None and \
secret_access_key is None and \
session_token is None
secret_access_key is None and session_token is None
if use_fallback_auth:
_msg = 'auth=fallback'
self.log = logging.getLogger('Route53Provider[{}]'.format(id))


Loading…
Cancel
Save