fix small typo in BackendError class

Change-Id: I54e16e807527a6986d67c17ab85aac48ada3a380
Signed-off-by: Sven Kieske <kieske@osism.tech>
This commit is contained in:
Sven Kieske 2023-07-03 15:53:06 +02:00
parent 0a56650693
commit 606164d828
No known key found for this signature in database

View File

@ -73,7 +73,7 @@ class MaxConnectionReachedError(Exception):
class BackendError(Exception):
def __init__(self, msg, backend):
self.bacend = backend
self.backend = backend
Exception.__init__(self, msg)