diff options
author | Austin Morton <austinpmorton@gmail.com> | 2020-02-25 02:42:33 -0500 |
---|---|---|
committer | Austin Morton <austinpmorton@gmail.com> | 2020-02-25 02:42:33 -0500 |
commit | fabbbdee51184828b58148b621dbbb49d18744e0 (patch) | |
tree | 42cc37721b66f34ded9cdd824acd58f15899ba6f /lib/compilers/python.js | |
parent | ab0f557f028fb48bab877f81abd4e6a111408134 (diff) | |
download | compiler-explorer-fabbbdee51184828b58148b621dbbb49d18744e0.tar.gz compiler-explorer-fabbbdee51184828b58148b621dbbb49d18744e0.zip |
Fix python compiler implementation
Closes #1847
Diffstat (limited to 'lib/compilers/python.js')
-rw-r--r-- | lib/compilers/python.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/python.js b/lib/compilers/python.js index ef362732a..09f1053f6 100644 --- a/lib/compilers/python.js +++ b/lib/compilers/python.js @@ -61,7 +61,7 @@ class PythonCompiler extends BaseCompiler { bytecodeResult.push({text: line, source: sourceLoc}); }); - return bytecodeResult; + return {asm: bytecodeResult}; } getDisasmScriptPath() { |