From 4ea27c145b6fe54a47ae4fc2523107d15cb5cab5 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Fri, 10 Jul 2020 15:20:43 -0400 Subject: [PATCH] Fix auth token reading from env for ghnav-flask --- examples/miniapps/ghnav-flask/githubnavigator/entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/miniapps/ghnav-flask/githubnavigator/entrypoint.py b/examples/miniapps/ghnav-flask/githubnavigator/entrypoint.py index 783f49f7..a64be771 100644 --- a/examples/miniapps/ghnav-flask/githubnavigator/entrypoint.py +++ b/examples/miniapps/ghnav-flask/githubnavigator/entrypoint.py @@ -5,5 +5,5 @@ from .application import Application application = Application() application.config.from_yaml('config.yml') -application.config.github.token.from_env('GITHUB_TOKEN') +application.config.github.auth_token.from_env('GITHUB_TOKEN') app = application.app()