diff options
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"))
|