Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bedup/platform/btrfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def read_root_tree(volume_fd):
# Deal with parent_root_id > root_id,
# happens after moving subvolumes.
while ri_rel:
for (root_id, ri) in ri_rel.items():
for (root_id, ri) in dict(ri_rel).items():
if ri.parent_root_id not in root_info:
continue
parent_path = root_info[ri.parent_root_id].path
Expand Down