Skip to content

Commit

Permalink
Merge pull request #27 from yymin1022/fix_corona
Browse files Browse the repository at this point in the history
Fix Corona API Token
  • Loading branch information
yymin1022 authored Jan 26, 2022
2 parents f528a1e + 82213dd commit 7566f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions message.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def messageCoding():
return strMessage

def messageCorona():
tokenFile = open("/home/server/API_TOKEN", "r")
tokenFile = open("/app/API_TOKEN", "r")
API_TOKEN = tokenFile.readline().strip()
tokenFile.close()

Expand Down Expand Up @@ -205,7 +205,7 @@ def messageCorona():
return strMessage

def messageCoronaCity():
tokenFile = open("/home/server/API_TOKEN", "r")
tokenFile = open("/app/API_TOKEN", "r")
API_TOKEN = tokenFile.readline().strip()
tokenFile.close()

Expand Down

0 comments on commit 7566f93

Please sign in to comment.