Skip to content

Commit 1111200

Browse files
authored
Fix: name of read env-variable
1 parent 7508387 commit 1111200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ def load_env(key: str, default: str) -> str:
2626
PREFIX = load_env("PREFIX", "b!")
2727
VERSION = load_env("VERSION", "unknown") # version of the bot
2828
OWNER_NAME = load_env("OWNER_NAME", "unknown") # owner name with tag e.g. pi#3141
29-
OWNER_ID = int(load_env("OWNER", "100000000000000000")) # discord id of the owner
29+
OWNER_ID = int(load_env("OWNER_ID", "100000000000000000")) # discord id of the owner

0 commit comments

Comments
 (0)