Skip to content

Commit

Permalink
Merge pull request #44 from tatacontreras/fix-environment-variable
Browse files Browse the repository at this point in the history
Fix environment variable for daily release task
  • Loading branch information
ReenigneArcher authored Apr 25, 2022
2 parents 1b5149d + d470ded commit d30ca9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ async def daily_task():
except KeyError:
daily_releases = True
else:
if os.environ['DAILY_TASKS'].lower() == 'true':
if os.environ['DAILY_RELEASES'].lower() == 'true':
daily_releases = True
else:
print("'DAILY_RELEASES' environment variable is disabled")
Expand Down

0 comments on commit d30ca9c

Please sign in to comment.