about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-03-17 09:47:37 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-03-17 09:47:37 +0100
commitad6ce9e48ead940804cbba521a01df8c9cc82027 (patch)
treec4f00d4ecb9f52be333099b6c76c425142cebd4b
parent7515ea1f0c1b764ece072a4ff6d434da23425b21 (diff)
downloadmiasm-ad6ce9e48ead940804cbba521a01df8c9cc82027.tar.gz
miasm-ad6ce9e48ead940804cbba521a01df8c9cc82027.zip
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