Skip to content

Commit

Permalink
reword app_ver warning
Browse files Browse the repository at this point in the history
  • Loading branch information
summertriangle-dev committed May 21, 2016
1 parent 27e011b commit bb31240
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ def main():
port = int(os.environ.get("PORT", 5000))

http_server.listen(port, addr)
print("Current APP_VER:", os.environ.get("VC_APP_VER", "Not set. Auto update won't work."))
print("Current APP_VER:", os.environ.get("VC_APP_VER",
"1.9.1 (warning: Truth updates will fail in the future if an accurate VC_APP_VER "
"is not set. Export VC_APP_VER to suppress this warning.)"))
print("Ready.")
tornado.ioloop.IOLoop.instance().start()

Expand Down

0 comments on commit bb31240

Please sign in to comment.