updated version and fixed assigned headers
This commit is contained in:
parent
2b7a0c5229
commit
6cd0d267d1
@ -5,7 +5,7 @@
|
||||
from .client import CZDS
|
||||
|
||||
|
||||
__version__ = '1.2.4'
|
||||
__version__ = '1.2.5'
|
||||
__author__ = 'acidvegas'
|
||||
__email__ = 'acid.vegas@acid.vegas'
|
||||
__github__ = 'https://github.com/acidvegas/czds'
|
@ -64,6 +64,7 @@ class CZDS:
|
||||
|
||||
result = await response.json()
|
||||
logging.info('Successfully authenticated with ICANN API')
|
||||
self.headers = {'Authorization': f'Bearer {result["accessToken"]}'}
|
||||
return result['accessToken']
|
||||
|
||||
except Exception as e:
|
||||
@ -83,7 +84,7 @@ class CZDS:
|
||||
raise Exception(error_msg)
|
||||
|
||||
links = await response.json()
|
||||
logging.info(f'Successfully fetched {len(links)} zone links')
|
||||
logging.info(f'Successfully fetched {len(links):,} zone links')
|
||||
return links
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user