We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 466309d commit 5c72498Copy full SHA for 5c72498
dsync/diff.py
@@ -102,7 +102,7 @@ def print_detailed(self, indent: int = 0):
102
margin = " " * indent
103
for group in self.groups():
104
print(f"{margin}{group}")
105
- for child in self.get_children():
+ for child in self.children[group].values():
106
if child.has_diffs():
107
child.print_detailed(indent + 2)
108
0 commit comments