summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd/otg/drive.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/plugins/msd/otg/drive.py')
-rw-r--r--kvmd/plugins/msd/otg/drive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/plugins/msd/otg/drive.py b/kvmd/plugins/msd/otg/drive.py
index 1bae91e5..825354a5 100644
--- a/kvmd/plugins/msd/otg/drive.py
+++ b/kvmd/plugins/msd/otg/drive.py
@@ -82,7 +82,7 @@ class Drive:
try:
with open(os.path.join(self.__lun_path, param), "w") as file:
file.write(value + "\n")
- except OSError as err:
- if err.errno == errno.EBUSY:
+ except OSError as ex:
+ if ex.errno == errno.EBUSY:
raise MsdDriveLockedError()
raise