From cdbd608379ebcae2039eb59cbc49a51c724c20b7 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Wed, 1 Aug 2018 18:42:39 -0400 Subject: [PATCH] Show "n/a" instead of "off" when no bluetooth controllers were found --- bin/khatus_parse_bluetoothctl_show | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/khatus_parse_bluetoothctl_show b/bin/khatus_parse_bluetoothctl_show index 08a8708..7de42cf 100755 --- a/bin/khatus_parse_bluetoothctl_show +++ b/bin/khatus_parse_bluetoothctl_show @@ -26,7 +26,7 @@ END { show = "ERROR" } } else { - show = "off" # TODO: Perhaps use differentiated marker? + show = "n/a" } print(show) } -- 2.20.1