From eda250185ec2f56323db78af97970132e7bce2f0 Mon Sep 17 00:00:00 2001 From: Rob McMullen Date: Sun, 26 Feb 2017 14:23:58 -0800 Subject: [PATCH] Fixed file deletion that was not updating the VTOC --- atrcopy/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/atrcopy/utils.py b/atrcopy/utils.py index 0071ad8..264c170 100644 --- a/atrcopy/utils.py +++ b/atrcopy/utils.py @@ -341,3 +341,4 @@ class VTOC(BaseSectorList): def free_sector_list(self, sector_list): for sector in sector_list: self.sector_map[sector.sector_num] = 1 + self.calc_bitmap()