From f49a80eee3888a141fc82f0ee9ab3453b15d9eb0 Mon Sep 17 00:00:00 2001 From: Jimmy Tran Date: Mon, 8 Jul 2019 17:08:02 -0700 Subject: [PATCH] Save python3 extension as `py3` since `py` extension submits code as python not python3 --- lib/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helper.js b/lib/helper.js index c2085134..10898c61 100644 --- a/lib/helper.js +++ b/lib/helper.js @@ -40,7 +40,7 @@ const LANGS = [ {lang: 'kotlin', ext: '.kt', style: 'c'}, {lang: 'mysql', ext: '.sql', style: '--'}, {lang: 'python', ext: '.py', style: '#'}, - {lang: 'python3', ext: '.py', style: '#'}, + {lang: 'python3', ext: '.py3', style: '#'}, {lang: 'ruby', ext: '.rb', style: '#'}, {lang: 'rust', ext: '.rs', style: 'c'}, {lang: 'scala', ext: '.scala', style: 'c'},