index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-11 11:37:23 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-11 11:37:23 +0000 |
commit | 58099534404ca9c9ee68b9cbc06c3a8e739cbbcc (patch) | |
tree | 5c7ce04ba296fee5cf63488856c2b6ae98b59401 /archinstall/lib/disk | |
parent | 610e161d449918b1ed5cb64ee17ab378d323b9c9 (diff) |
-rw-r--r-- | archinstall/lib/disk/filesystem.py | 2 |
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index 61a789a1..0c535c7d 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -21,7 +21,7 @@ class Filesystem: def __enter__(self, *args, **kwargs): # TODO: partition_table_type is hardcoded to GPT at the moment. This has to be changed. - elif self.mode == self.blockdevice.partition_table_type: + if self.mode == self.blockdevice.partition_table_type: log(f'Kept partition format {self.mode} for {self.blockdevice}', level=logging.DEBUG) else: raise DiskError(f'The selected partition table format {self.mode} does not match that of {self.blockdevice}.') |