This commit is contained in:
Mylloon 2021-07-27 21:00:57 +02:00
parent 912bf6516c
commit 2c89bb6de3

View file

@ -10,7 +10,7 @@ def load(variables):
try:
res = environ[var]
if var == "CHANNEL":
res = list(set(res.split(',')) - {""}) # create a list for the channels and remove blank channels
res = list(set(res.split(',')) - {""}) # create a list for the channels and remove blank channels and doubles
keys[var] = res
except KeyError:
print(f"Please set the environment variable {var} (.env file supported)")