about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFlorent <florent.monjalet@gmail.com>2017-03-17 10:03:32 +0100
committerGitHub <noreply@github.com>2017-03-17 10:03:32 +0100
commitf87c4f1ce9f5b6c405ff52a0256d27e2431171ce (patch)
treec4f00d4ecb9f52be333099b6c76c425142cebd4b
parent7515ea1f0c1b764ece072a4ff6d434da23425b21 (diff)
parentad6ce9e48ead940804cbba521a01df8c9cc82027 (diff)
downloadmiasm-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.py2
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