Skip to content

Commit

Permalink
Fix environment variable for daily release task
Browse files Browse the repository at this point in the history
  • Loading branch information
tatacontreras committed Apr 25, 2022
1 parent 1b5149d commit d470ded
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 d470ded

Please sign in to comment.