Commit 886d5d05 authored by Georgios Dagkakis's avatar Georgios Dagkakis Committed by Jérome Perrin

pydot import made optional to run the platform

parent 3b6c100a
...@@ -21,7 +21,10 @@ import sys ...@@ -21,7 +21,10 @@ import sys
import json import json
import traceback import traceback
import multiprocessing import multiprocessing
import pydot try:
import pydot
except ImportError:
print "Warning, pydot could not be found"
import os.path import os.path
import logging import logging
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment