Skip to content

Commit 66d3529

Browse files
zmusselmanaminya
authored andcommitted
Python - Python3
1 parent 6741089 commit 66d3529

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/grammars/python.coffee

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ GrammarUtils = require '../grammar-utils'
22

33
exports.Python =
44
'Selection Based':
5-
command: 'python'
5+
command: 'python3'
66
args: (context) ->
77
code = context.getCode()
88
tmpFile = GrammarUtils.createTempFileWithCode(code)
99
return ['-u', tmpFile]
1010

1111
'File Based':
12-
command: 'python'
12+
command: 'python3'
1313
args: ({filepath}) -> ['-u', filepath]
1414

1515
exports.MagicPython = exports.Python

0 commit comments

Comments
 (0)