diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-02-16 09:41:47 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-02-19 16:05:18 +0100 |
| commit | f242f79868dbd80ea319e2ae97bb44ba11270400 (patch) | |
| tree | 19e7d45234338c20f5c1f9a753c057a4c32e5749 /miasm2/jitter/loader/pe.py | |
| parent | 471f260ce26056182007e34adc2b742bb4c317b8 (diff) | |
| download | miasm-f242f79868dbd80ea319e2ae97bb44ba11270400.tar.gz miasm-f242f79868dbd80ea319e2ae97bb44ba11270400.zip | |
Core/utils: autopep8
Diffstat (limited to 'miasm2/jitter/loader/pe.py')
| -rw-r--r-- | miasm2/jitter/loader/pe.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miasm2/jitter/loader/pe.py b/miasm2/jitter/loader/pe.py index c40e8e38..2d80c8df 100644 --- a/miasm2/jitter/loader/pe.py +++ b/miasm2/jitter/loader/pe.py @@ -485,7 +485,8 @@ def vm_load_pe_and_dependencies(vm, fname, name2module, runtime_lib, try: with open(fname) as fstream: log.info('Loading module name %r', fname) - pe_obj = vm_load_pe(vm, fstream.read(), name=fname, **kwargs) + pe_obj = vm_load_pe( + vm, fstream.read(), name=fname, **kwargs) except IOError: log.error('Cannot open %s' % fname) name2module[name] = None |