index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/disk.py | 2 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 95418ab1..371bf7f5 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -85,8 +85,6 @@ class BlockDevice(): if 'pkname' not in self.info: raise DiskError(f'A crypt device ({self.path}) without a parent kernel device name.') return f"/dev/{self.info['pkname']}" - else: - raise DiskError(f"Could not locate actual block device path for {self.path}") # if not stat.S_ISBLK(os.stat(full_path).st_mode): # raise DiskError(f'Selected disk "{full_path}" is not a block device.') |