From 91d1f1a72fe014b507430697e26d76306b54805c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 15 Sep 2014 17:58:04 -0400 Subject: don't assign a streamer to "q" --- ssh.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ssh.py') diff --git a/ssh.py b/ssh.py index a14dda2..66e422a 100644 --- a/ssh.py +++ b/ssh.py @@ -52,6 +52,9 @@ class Connection(object): streamers = self.publisher.request_all("get_streamers") for streamer in streamers: key = chr(key_code) + if key == "q": + key_code += 1 + key = chr(key_code) streamer["key"] = key keymap[key] = streamer["id"] key_code += 1 -- cgit v1.2.3-54-g00ecf