From e520a0c5ef88af6a7fb314aaf273d8d105352e9e Mon Sep 17 00:00:00 2001 From: Camille Mougey Date: Wed, 11 Feb 2015 13:51:22 +0100 Subject: DiGraph: Inherite DiGraph from `object` --- miasm2/core/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miasm2/core/graph.py') 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): -- cgit 1.4.1