Skip to content

Commit d07710b

Browse files
committed
Fix indentation of the previous commit.
We didn't hide the code behind the if test as we should have, fix that here. Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
1 parent f874712 commit d07710b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pycdlib/pycdlib.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2052,11 +2052,11 @@ def _parse_udf_descriptors(self):
20522052
self._seek_to_extent(self.udf_main_descs.logical_volumes[0].integrity_sequence.extent_location)
20532053
integrity_data = self._cdfp.read(self.udf_main_descs.logical_volumes[0].integrity_sequence.extent_length)
20542054

2055-
ulvi, ulvi_term = udfmod.parse_logical_volume_integrity(integrity_data,
2056-
self.udf_main_descs.logical_volumes[0].integrity_sequence.extent_location,
2057-
self.logical_block_size)
2058-
self.udf_logical_volume_integrity = ulvi
2059-
self.udf_logical_volume_integrity_terminator = ulvi_term
2055+
ulvi, ulvi_term = udfmod.parse_logical_volume_integrity(integrity_data,
2056+
self.udf_main_descs.logical_volumes[0].integrity_sequence.extent_location,
2057+
self.logical_block_size)
2058+
self.udf_logical_volume_integrity = ulvi
2059+
self.udf_logical_volume_integrity_terminator = ulvi_term
20602060

20612061
# Now look for the File Set Descriptor.
20622062
current_extent = self.udf_main_descs.partitions[0].part_start_location

0 commit comments

Comments
 (0)