[graph] use cross-platform temp directory

This commit is contained in:
Yann Lanthony 2017-09-19 11:41:08 +02:00
parent 759458832c
commit a758a47475

View file

@ -1,11 +1,12 @@
import importlib
import inspect
import re
import tempfile
from . import desc
from .graph import * # TODO: remove this
cacheFolder = '/tmp/processGraphCache'
cacheFolder = os.path.join(tempfile.gettempdir(), 'processGraphCache')
nodesDesc = {}