From 2ef7be9787c4d3acb91f91308acf7bf5c8715c1a Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 14 Mar 2021 12:17:30 +0100 Subject: Wrong variable name. --- archinstall/lib/exceptions.py | 4 ++-- 1 file 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): -- cgit v1.2.3-54-g00ecf