Fixed import error saying aiofiles instead of aiohttp
This commit is contained in:
parent
b1fa34f3aa
commit
1864f08e4b
@ -10,11 +10,11 @@ import time
|
|||||||
try:
|
try:
|
||||||
import aiohttp
|
import aiohttp
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise ImportError('Missing required \'aiofiles\' library. (pip install aiofiles)')
|
raise ImportError('Missing required \'aiohttp\' library. (pip install aiohttp)')
|
||||||
|
|
||||||
|
|
||||||
# Set a default elasticsearch index if one is not provided
|
# Set a default elasticsearch index if one is not provided
|
||||||
default_index = 'rir-delegations-' + time.strftime('%Y-%m-%d')
|
default_index = 'rir-delegation-' + time.strftime('%Y-%m-%d')
|
||||||
|
|
||||||
# Delegation data sources
|
# Delegation data sources
|
||||||
delegation_db = {
|
delegation_db = {
|
||||||
|
Loading…
Reference in New Issue
Block a user