diff options
| author | Florent <florent.monjalet@gmail.com> | 2017-03-17 10:03:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-17 10:03:32 +0100 |
| commit | f87c4f1ce9f5b6c405ff52a0256d27e2431171ce (patch) | |
| tree | c4f00d4ecb9f52be333099b6c76c425142cebd4b | |
| parent | 7515ea1f0c1b764ece072a4ff6d434da23425b21 (diff) | |
| parent | ad6ce9e48ead940804cbba521a01df8c9cc82027 (diff) | |
| download | miasm-f87c4f1ce9f5b6c405ff52a0256d27e2431171ce.tar.gz miasm-f87c4f1ce9f5b6c405ff52a0256d27e2431171ce.zip | |
Merge pull request #503 from serpilliere/fix_x86_blocs_api
IR: fix support old api blocs
| -rw-r--r-- | miasm2/ir/ir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/ir/ir.py b/miasm2/ir/ir.py index 5ebb51ec..e63176a0 100644 --- a/miasm2/ir/ir.py +++ b/miasm2/ir/ir.py @@ -340,7 +340,7 @@ class IntermediateRepresentation(object): self._graph = None @property - def get_blocs(self): + def blocs(self): warnings.warn('DEPRECATION WARNING: use ".blocks" instead of ".blocs"') return self.blocks |