aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/python.js
diff options
context:
space:
mode:
authorAustin Morton <austinpmorton@gmail.com>2020-02-25 02:42:33 -0500
committerAustin Morton <austinpmorton@gmail.com>2020-02-25 02:42:33 -0500
commitfabbbdee51184828b58148b621dbbb49d18744e0 (patch)
tree42cc37721b66f34ded9cdd824acd58f15899ba6f /lib/compilers/python.js
parentab0f557f028fb48bab877f81abd4e6a111408134 (diff)
downloadcompiler-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.js2
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() {