index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-03-14 12:17:30 +0100 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-03-14 12:17:30 +0100 |
commit | 2ef7be9787c4d3acb91f91308acf7bf5c8715c1a (patch) | |
tree | 6d401ad5c93a17317806cac7fa638babb84e63c0 /archinstall | |
parent | f589750a3cff6f061bc4b78ef857e52a7fbc874c (diff) |
-rw-r--r-- | archinstall/lib/exceptions.py | 4 |
diff --git a/archinstall/lib/exceptions.py b/archinstall/lib/exceptions.py index 558a397d..a320eef6 100644 --- a/archinstall/lib/exceptions.py +++ b/archinstall/lib/exceptions.py @@ -7,10 +7,10 @@ class UnknownFilesystemFormat(BaseException): class ProfileError(BaseException): pass class SysCallError(BaseException): - def __init__(self, message, error_code): + def __init__(self, message, exit_code): super(SysCallError, self).__init__(message) self.message = message - self.error_code = error_code + self.exit_code = exit_code class ProfileNotFound(BaseException): pass class HardwareIncompatibilityError(BaseException): |