mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +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 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 = {}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue