This commit is contained in:
Leon Noe Jovan 2023-01-14 13:56:03 +01:00
parent e6c87bb3f6
commit ce03a21ad7

View File

@ -502,9 +502,9 @@ def get_region_stats():
#logging.error(os)
#logging.error(neos)
for key, val in os:
for key, val in os if key in VALID_REGIONS:
ret[key][0] = val
for key, val in neos:
for key, val in neos if key in VALID_REGIONS:
ret[key][1] = val
logging.error(ret)