diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2014-12-03 19:40:01 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2014-12-03 22:29:33 +0100 |
| commit | 7c07c648f1ea895b8868435f17232fbdbb8bd0f7 (patch) | |
| tree | 3a9bfe7dc603d274433dc4d21f2c6370785725d3 | |
| parent | a8234d789ea2c7eaed39bb73a1a43d9fb93d5980 (diff) | |
| download | miasm-7c07c648f1ea895b8868435f17232fbdbb8bd0f7.tar.gz miasm-7c07c648f1ea895b8868435f17232fbdbb8bd0f7.zip | |
Jitload: Fix relative import
| -rw-r--r-- | miasm2/jitter/jitload.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py index 8e1ec315..2135f40e 100644 --- a/miasm2/jitter/jitload.py +++ b/miasm2/jitter/jitload.py @@ -3,10 +3,9 @@ import os from miasm2.core import asmbloc -from csts import * +from miasm2.jitter.csts import * from miasm2.core.utils import * from miasm2.core.bin_stream import bin_stream - from miasm2.ir.ir2C import init_arch_C import logging |