From c645d3913185ffe8eed7410f2dccffa2f4e1032c Mon Sep 17 00:00:00 2001
From: pconesa
Date: Wed, 2 Oct 2024 13:33:24 +0200
Subject: [PATCH] hotfix: loading related objects (CTF - Mics in particle
extraction)
---
CHANGES.txt | 1 +
pyworkflow/constants.py | 2 +-
pyworkflow/project/project.py | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/CHANGES.txt b/CHANGES.txt
index 82b0cc5af..6fbb0f730 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,4 @@
+V3.9.1 - hotfix: loading related objects (CTF - Mics in particle extraction)
V3.9.0
- Project can have a comment (tooltip over the project name and click will edit it). Will be populated with templates description.
- Project Color modes:
diff --git a/pyworkflow/constants.py b/pyworkflow/constants.py
index 76b094806..dd8a1cb60 100644
--- a/pyworkflow/constants.py
+++ b/pyworkflow/constants.py
@@ -43,7 +43,7 @@
VERSION_1_1 = '1.1.0'
VERSION_1_2 = '1.2.0'
VERSION_2_0 = '2.0.0'
-VERSION_3_0 = '3.9.0'
+VERSION_3_0 = '3.9.1'
# For a new release, define a new constant and assign it to LAST_VERSION
# The existing one has to be added to OLD_VERSIONS list.
diff --git a/pyworkflow/project/project.py b/pyworkflow/project/project.py
index cc69b83ef..a25e9c201 100644
--- a/pyworkflow/project/project.py
+++ b/pyworkflow/project/project.py
@@ -1934,7 +1934,7 @@ def _getConnectedObjects(self, obj, graph):
if n is not None:
# Iterate recursively all descendants
- for node in n.iterChilds():
+ for node in n.iterChildren():
connection[node.pointer.getUniqueId()] = True
# Add also
connection[node.pointer.get().strId()] = True