Skip to content

Commit 5c72498

Browse files
committed
revert changes in print_detailed
1 parent 466309d commit 5c72498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsync/diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def print_detailed(self, indent: int = 0):
102102
margin = " " * indent
103103
for group in self.groups():
104104
print(f"{margin}{group}")
105-
for child in self.get_children():
105+
for child in self.children[group].values():
106106
if child.has_diffs():
107107
child.print_detailed(indent + 2)
108108

0 commit comments

Comments
 (0)