phase3
This commit is contained in:
parent
18b2ee383c
commit
57dfc8f8ba
1 changed files with 3 additions and 3 deletions
6
grid.py
6
grid.py
|
@ -29,9 +29,9 @@ def querydb(cubeid):
|
|||
""" open a metadata file """
|
||||
try:
|
||||
dbfile = 'db/vm.{}.json'.format(src_data['cube'])
|
||||
with open(dbfile as datafile):
|
||||
data = json.load(datafile)
|
||||
datafile.close()
|
||||
with open(dbfile, 'r' as dbf):
|
||||
data = json.load(dbf)
|
||||
dbf.close()
|
||||
logger.info('grid> {} --> {}'.format(dbfile, data))
|
||||
except Exception as e:
|
||||
logger.critical('grid> {}'.format(e))
|
||||
|
|
Loading…
Reference in a new issue