mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 01:46:31 +02:00
[graph] use cross-platform temp directory
This commit is contained in:
parent
759458832c
commit
a758a47475
1 changed files with 2 additions and 1 deletions
|
@ -1,11 +1,12 @@
|
||||||
import importlib
|
import importlib
|
||||||
import inspect
|
import inspect
|
||||||
import re
|
import re
|
||||||
|
import tempfile
|
||||||
|
|
||||||
from . import desc
|
from . import desc
|
||||||
from .graph import * # TODO: remove this
|
from .graph import * # TODO: remove this
|
||||||
|
|
||||||
cacheFolder = '/tmp/processGraphCache'
|
cacheFolder = os.path.join(tempfile.gettempdir(), 'processGraphCache')
|
||||||
nodesDesc = {}
|
nodesDesc = {}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue