Skip to content

Commit

Permalink
Merge pull request #561 from scipion-em/hotfix-childs
Browse files Browse the repository at this point in the history
Hotfix childs
  • Loading branch information
pconesa authored Oct 2, 2024
2 parents b2add55 + c645d39 commit b35c824
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyworkflow/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyworkflow/project/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b35c824

Please sign in to comment.