Skip to content

Commit 7412722

Browse files
committed
HOTFIX: manage.py allow multiline secrets
1 parent 12fd6a4 commit 7412722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
for filepath in secrets.iterdir():
1111
with open(filepath, "r") as file:
1212
key = filepath.name
13-
value = file.readline().strip()
13+
value = file.read().strip()
1414
environ.setdefault(key, value)
1515

1616
# Production is default for safety

0 commit comments

Comments
 (0)