Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-03-14 12:17:30 +0100
committerAnton Hvornum <anton@hvornum.se>2021-03-14 12:17:30 +0100
commit2ef7be9787c4d3acb91f91308acf7bf5c8715c1a (patch)
tree6d401ad5c93a17317806cac7fa638babb84e63c0 /archinstall/lib
parentf589750a3cff6f061bc4b78ef857e52a7fbc874c (diff)
Wrong variable name.
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/exceptions.py4
1 files changed, 2 insertions, 2 deletions
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):