Module: check_mk
Branch: master
Commit: 90bfed82432bc62564465848d56fb1d1b916614d
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=90bfed82432bc6…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Mon Nov 28 08:23:31 2011 +0100
gb: do not use dot as selection character
---
gb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gb b/gb
index 45ed851..8f79147 100755
--- a/gb
+++ b/gb
@@ -346,7 +346,7 @@ def input_choice(what, choices):
texts = []
for choice in choices:
for c in choice:
- if c not in ctc:
+ if c not in ".-_/" and c not in ctc:
ctc[c] = choice
texts.append(choice.replace(c, tty_bold + c + tty_normal, 1))
break