index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/disk.py | 4 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index c721c90e..8eb4b54d 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -142,8 +142,8 @@ class Partition(): # in order to determain if we support it or not. try: self.format(self.filesystem, '/dev/null') - except DiskError: - pass # We supported it, but /dev/null is not formatable as expected + except SysCallError: + pass # We supported it, but /dev/null is not formatable as expected so the mkfs call exited with an error code except UnknownFilesystemFormat as err: raise err |