about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-02-11 13:51:22 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-02-20 15:20:39 +0100
commite520a0c5ef88af6a7fb314aaf273d8d105352e9e (patch)
tree5512b9156ea4c9cf4b8d52a3d4fa7b0c06fa33fc
parentf1966ac767894b4fe954613d2134f87cdc3697ca (diff)
downloadmiasm-e520a0c5ef88af6a7fb314aaf273d8d105352e9e.tar.gz
miasm-e520a0c5ef88af6a7fb314aaf273d8d105352e9e.zip
DiGraph: Inherite DiGraph from `object`
-rw-r--r--miasm2/core/graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py
index 2b873ad9..b25907e5 100644
--- a/miasm2/core/graph.py
+++ b/miasm2/core/graph.py
@@ -1,6 +1,6 @@
 from collections import defaultdict
 
-class DiGraph:
+class DiGraph(object):
     """Implementation of directed graph"""
 
     def __init__(self):