From aa932620a75c9a5945b49429c1a2a79ff276d3d5 Mon Sep 17 00:00:00 2001 From: up-n-atom Date: Thu, 14 Sep 2023 20:53:23 -0400 Subject: [PATCH] Capitalize abbreviation --- xmo-remote-client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmo-remote-client.py b/xmo-remote-client.py index 70d6be2..a48184a 100755 --- a/xmo-remote-client.py +++ b/xmo-remote-client.py @@ -156,7 +156,7 @@ async def disable_wifi_radio(client: SagemcomClient, radio: Any) -> None: def validate_mac_address(ctx: click.Context, param: str, value: str) -> str: if not re.match(r"([0-9A-F]{2}:){5}[0-9A-F]{2}$", value): - raise click.BadParameter("Invalid mac address", param=value) + raise click.BadParameter("Invalid MAC address", param=value) return value