mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 19:14:58 -05:00
Merge pull request #510 from bongbui321/setactiveslot_fix
Firehose: fix setting active slot for partition B
This commit is contained in:
commit
fa58a5a688
1 changed files with 2 additions and 2 deletions
|
@ -1311,8 +1311,8 @@ class firehose(metaclass=LogBase):
|
||||||
partslots["_a"] = True
|
partslots["_a"] = True
|
||||||
partslots["_b"] = False
|
partslots["_b"] = False
|
||||||
elif slot == "b":
|
elif slot == "b":
|
||||||
partslots["_a"] = True
|
partslots["_a"] = False
|
||||||
partslots["_b"] = False
|
partslots["_b"] = True
|
||||||
fpartitions = {}
|
fpartitions = {}
|
||||||
for lun in self.luns:
|
for lun in self.luns:
|
||||||
lunname = "Lun" + str(lun)
|
lunname = "Lun" + str(lun)
|
||||||
|
|
Loading…
Reference in a new issue