This commit is contained in:
Leon Noe Jovan 2023-01-14 14:02:11 +01:00
parent ce03a21ad7
commit 8506356a13

View File

@ -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)