fixes
This commit is contained in:
parent
ce03a21ad7
commit
8506356a13
|
@ -502,9 +502,13 @@ def get_region_stats():
|
|||
#logging.error(os)
|
||||
#logging.error(neos)
|
||||
|
||||
for key, val in os if key in VALID_REGIONS:
|
||||
for key, val in os:
|
||||
if key not in VALID_REGIONS:
|
||||
continue
|
||||
ret[key][0] = val
|
||||
for key, val in neos if key in VALID_REGIONS:
|
||||
for key, val in neos:
|
||||
if key not in VALID_REGIONS:
|
||||
continue
|
||||
ret[key][1] = val
|
||||
|
||||
logging.error(ret)
|
||||
|
|
Loading…
Reference in New Issue
Block a user