diff options
author | 2018-02-03 14:19:57 +0000 | |
---|---|---|
committer | 2018-02-03 14:19:57 +0000 | |
commit | 7f8d9d6edfe76c337e207752663b38048c504a5f (patch) | |
tree | 91f1a4f631bdd2d00f24446b8d40aa27f94fac3a /app.py | |
parent | oh no thank you (diff) |
First test commit w/ travis
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ app.secret_key = os.environ.get("WEBPAGE_SECRET_KEY") @app.route("/") def index(): - return "Hello." + return "Hello, world." if __name__ == '__main__': |