mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +02:00
make comment clearer
This commit is contained in:
parent
a7f4d39472
commit
dcbee52611
2 changed files with 4 additions and 2 deletions
|
@ -219,6 +219,7 @@ class SketchfabUpload(desc.Node):
|
||||||
try:
|
try:
|
||||||
self._stopped = False
|
self._stopped = False
|
||||||
chunk.logManager.start(chunk.node.verboseLevel.value)
|
chunk.logManager.start(chunk.node.verboseLevel.value)
|
||||||
|
uploadFile = ''
|
||||||
|
|
||||||
if not chunk.node.inputFiles:
|
if not chunk.node.inputFiles:
|
||||||
chunk.logger.warning('Nothing to upload')
|
chunk.logger.warning('Nothing to upload')
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -41,8 +41,9 @@ class PlatformExecutable(Executable):
|
||||||
build_exe_options = {
|
build_exe_options = {
|
||||||
# include dynamically loaded plugins
|
# include dynamically loaded plugins
|
||||||
"packages": ["meshroom.nodes", "meshroom.submitters"],
|
"packages": ["meshroom.nodes", "meshroom.submitters"],
|
||||||
# cx_Freeze does not copy idnadata by default, so it needs to be added here
|
"includes": [
|
||||||
"includes": ["idna.idnadata"],
|
"idna.idnadata", # Dependency needed by SketchfabUpload node, but not detected by cx_Freeze
|
||||||
|
],
|
||||||
"include_files": ["CHANGES.md", "COPYING.md", "LICENSE-MPL2.md", "README.md"]
|
"include_files": ["CHANGES.md", "COPYING.md", "LICENSE-MPL2.md", "README.md"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue