tour du python blender
This commit is contained in:
parent
5c08493774
commit
c616054878
@ -1 +1 @@
|
||||
Subproject commit ff43a866bc591bb0c08458b86c303264fbfafb04
|
||||
Subproject commit d49651edb46d5b184af912f9949a5ec0ac6cf550
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user