diff options
author | Papoteur <papoteur@mageia.org> | 2021-10-12 21:41:43 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2021-10-12 21:41:53 +0200 |
commit | 89a43d1b708a3ed7896ae171c1536242c2992a55 (patch) | |
tree | a4ea4af0fef01bd6eff2ed441919486a1ba313a5 /lib | |
parent | 7c4098fc9df9b1e16ed3d9949dbaf369d953f26c (diff) | |
download | isodumper-89a43d1b708a3ed7896ae171c1536242c2992a55.tar isodumper-89a43d1b708a3ed7896ae171c1536242c2992a55.tar.gz isodumper-89a43d1b708a3ed7896ae171c1536242c2992a55.tar.bz2 isodumper-89a43d1b708a3ed7896ae171c1536242c2992a55.tar.xz isodumper-89a43d1b708a3ed7896ae171c1536242c2992a55.zip |
Fix detection of activation on partition type in any case.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/isodumper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py index 2bc3e33..247e139 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -983,7 +983,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog backup_ready = self.backup_cbox.isChecked() and (self.backup_dest != "") write_ready = self.write_cbox.isChecked() and (self.img_name != "") - partition_ready = self.partition_cbox.isChecked() and (self.partition_cb.value() == "ext4") + partition_ready = self.partition_cbox.isChecked() and (self.partition_cb.value() in self.format_type.values()) crypt_ready = self.cryptcb.isChecked() and (self.cryptkey.value() != "") start_active = backup_ready or write_ready or partition_ready if start_active: |