about summary refs log tree commit diff stats
path: root/miasm2/core/graph.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-02-20 23:20:12 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-02-20 23:20:12 +0100
commitf8e5ad9e5a7663451b01f67094e70e530d78e205 (patch)
tree5ad2b027928fefd987c1b6b94900feec8f4c1be8 /miasm2/core/graph.py
parent1db45ff969a41d0576cf00f00f7b59e1bb332de2 (diff)
parentd1a564fa53762961d9f54d24d9cea64f3eb84ff6 (diff)
downloadmiasm-f8e5ad9e5a7663451b01f67094e70e530d78e205.tar.gz
miasm-f8e5ad9e5a7663451b01f67094e70e530d78e205.zip
Merge pull request #82 from commial/feature-depgraph
Feature: dependency graphs
Diffstat (limited to 'miasm2/core/graph.py')
-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):