From 66d35298a8ae5cff957b8883d62c6081cebd153f Mon Sep 17 00:00:00 2001 From: zmusselman <60525571+zmusselman@users.noreply.github.com> Date: Thu, 25 Jun 2020 18:57:58 -0700 Subject: [PATCH] Python - Python3 --- lib/grammars/python.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/grammars/python.coffee b/lib/grammars/python.coffee index 7125b362..1dc0eaf0 100644 --- a/lib/grammars/python.coffee +++ b/lib/grammars/python.coffee @@ -2,14 +2,14 @@ GrammarUtils = require '../grammar-utils' exports.Python = 'Selection Based': - command: 'python' + command: 'python3' args: (context) -> code = context.getCode() tmpFile = GrammarUtils.createTempFileWithCode(code) return ['-u', tmpFile] 'File Based': - command: 'python' + command: 'python3' args: ({filepath}) -> ['-u', filepath] exports.MagicPython = exports.Python