Skip to content

Commit 4cf69b1

Browse files
committed
fix file path
1 parent 9db0da8 commit 4cf69b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/v1/auth/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
HOST = "redis" if os.getenv("USING_DOCKER") == "true" else "localhost"
3333
r = redis.Redis(password=os.getenv("REDIS_PASSWORD", ""), host=HOST)
3434

35-
with open("v1/auth/otp.html", "r", encoding="utf8") as f:
35+
with open("./api/v1/auth/otp.html", "r", encoding="utf8") as f:
3636
OTP_EMAIL_TEMPLATE = f.read()
3737

3838

0 commit comments

Comments
 (0)