diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2023-08-27 16:41:10 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2023-08-27 16:41:10 +0200 |
commit | fcce9177e356bb27283926451433130a8809fcb0 (patch) | |
tree | ff1aecf99be053f1681bd8965ae3f33c2a42169f /socket_conn.py | |
parent | 02d676bda89c2fb8469ea81f7429c19c1e29df7c (diff) |
Send the whole keymap to the device
Diffstat (limited to 'socket_conn.py')
-rwxr-xr-x | socket_conn.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/socket_conn.py b/socket_conn.py index 0ac7230..433cc75 100755 --- a/socket_conn.py +++ b/socket_conn.py @@ -44,3 +44,4 @@ class SocketConnection(object): """ Write into the connection.
Raise an exception if disconnected """
self.s.sendall(content)
+ self.s.sendall(bytes("\n", "utf-8"))
|