Skip to content

Commit 7ba1ef3

Browse files
fixup! replace autobahn&crossbar by gRPC
Fix newly introduced typos in exceptions and log messages. Signed-off-by: Bastian Krause <bst@pengutronix.de>
1 parent 473eab3 commit 7ba1ef3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

labgrid/remote/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ async def create_reservation(self):
14231423
try:
14241424
k, v = pair.split("=")
14251425
except ValueError:
1426-
raise UserError(f"'{pair}' is not a vaild filter (must contain a '=')")
1426+
raise UserError(f"'{pair}' is not a valid filter (must contain a '=')")
14271427
if not TAG_KEY.match(k):
14281428
raise UserError(f"Key '{k}' in filter '{pair}' is invalid")
14291429
if not TAG_KEY.match(v):

labgrid/remote/exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ async def message_pump(self):
890890
in_message.response.success = success
891891
if reason:
892892
in_message.response.reason = reason
893-
logging.debug("queing %s", in_message)
893+
logging.debug("queuing %s", in_message)
894894
self.out_queue.put_nowait(in_message)
895895
logging.debug("queued %s", in_message)
896896
else:

0 commit comments

Comments
 (0)