From b6bd4b9da0437653dc80a7db6ff8150f5f2ffdd7 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Sun, 26 May 2013 23:51:46 +0200 Subject: [PATCH] cli: fix alignment with new feature names --- lib/solaar/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/solaar/cli.py b/lib/solaar/cli.py index 8d1ed3ef..f30a4868 100644 --- a/lib/solaar/cli.py +++ b/lib/solaar/cli.py @@ -141,7 +141,7 @@ def _print_device(dev, verbose=False): flags = dev.request(0x0000, feature.bytes(2)) flags = 0 if flags is None else ord(flags[1:2]) flags = hidpp20.FEATURE_FLAG.flag_names(flags) - print (" %2d: %-20s {%04X} %s" % (index, feature, feature, ', '.join(flags))) + print (" %2d: %-22s {%04X} %s" % (index, feature, feature, ', '.join(flags))) if dev.keys: print (" Has %d reprogrammable keys:" % len(dev.keys))