From 43c5396e56658a46480a5896e543e3bd2e019ee2 Mon Sep 17 00:00:00 2001 From: Qais Patankar Date: Tue, 26 Jan 2021 12:18:40 +0000 Subject: [PATCH 1/2] Fix "Github" typo --- app/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/index.html b/app/templates/index.html index 225ad5c..1d16e04 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -27,7 +27,7 @@

{{ status }}

- Log in with Github + Log in with GitHub From 2fda126b0c1dabc3bd3bfdc79e27296b23e5bdfd Mon Sep 17 00:00:00 2001 From: Qais Patankar Date: Mon, 1 Feb 2021 01:23:41 +0000 Subject: [PATCH 2/2] Fix "Github" in capitalize_login_provider() --- app/hacker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/hacker.py b/app/hacker.py index 824d400..e2cb774 100644 --- a/app/hacker.py +++ b/app/hacker.py @@ -18,7 +18,7 @@ def capitalize_login_provider(): if session['login_type'] == 'mlh': return 'MLH' elif session['login_type'] == 'github': - return 'Github' + return 'GitHub' @bp.route('/import/mlh') @hacker_login_required