aboutsummaryrefslogtreecommitdiffstats
path: root/ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.py')
-rw-r--r--ssh.py3
1 files changed, 3 insertions, 0 deletions
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