From 0ba6b31435fcf97ec1ae7c2619e856e3eb5d96ac Mon Sep 17 00:00:00 2001 From: bongbui321 Date: Thu, 25 Apr 2024 02:50:16 -0400 Subject: [PATCH] less verbose for setactiveslot --- edlclient/Library/firehose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edlclient/Library/firehose.py b/edlclient/Library/firehose.py index 14d550e..799ed96 100755 --- a/edlclient/Library/firehose.py +++ b/edlclient/Library/firehose.py @@ -1361,7 +1361,7 @@ class firehose(metaclass=LogBase): write_size = len(patch_data) for i in range(0, write_size, size_each_patch): pdata_subset = int(unpack(unpack_fmt, patch_data[offset:offset+size_each_patch])[0]) - self.cmd_patch( lun, start_sector, byte_offset + offset, pdata_subset, size_each_patch, True) + self.cmd_patch( lun, start_sector, byte_offset + offset, pdata_subset, size_each_patch, False) offset += size_each_patch return True