tour du python blender

This commit is contained in:
Swann 2021-06-07 17:06:41 +02:00
parent 5c08493774
commit c616054878
No known key found for this signature in database
GPG Key ID: E1D3641A7C43AACB
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit ff43a866bc591bb0c08458b86c303264fbfafb04
Subproject commit d49651edb46d5b184af912f9949a5ec0ac6cf550

View File

@ -850,7 +850,7 @@ def update_external_dependencies():
nodes_ids = [n.uuid for n in session.repository.graph.values() if n.data['type_id'] in ['WindowsPath', 'PosixPath']]
for node_id in nodes_ids:
node = session.repository.graph.get(node_id)
if node and node.owner in [session.id, RP_COMMON]:
if node and node.owner in [session.repository.username, RP_COMMON]:
porcelain.commit(session.repository, node_id)
porcelain.push(session.repository,'origin', node_id)
@ -928,7 +928,7 @@ def depsgraph_evaluation(scene):
# - if its ours or ( under common and diff), launch the
# update process
# - if its to someone else, ignore the update
if node and (node.owner == session.id or check_common):
if node and (node.owner == session.repository.username or check_common):
if node.state == UP:
try:
porcelain.commit(session.repository, node.uuid)