From f05a3fd93bc90a299e4ab419513fd1f7ff332610 Mon Sep 17 00:00:00 2001 From: Andy Clemenko Date: Wed, 17 Apr 2024 15:48:20 -0400 Subject: [PATCH] fix gh token --- dzver/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dzver/app.py b/dzver/app.py index 38c932e..6136f89 100644 --- a/dzver/app.py +++ b/dzver/app.py @@ -8,7 +8,7 @@ app = Flask(__name__) gh_token = os.getenv('GITHUB_TOKEN') -headers = {'authorization': 'Bearer'gh_token} +headers = {'authorization': 'Bearer {}'.format(gh_token)} @app.route('/json', methods=['GET']) def json_all_the_things():