Skip to content
Snippets Groups Projects
Commit 62eef820 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

dstat_comm: Flush correct pipe.

parent b3481210
Branches
Tags
1 merge request!10Move to gtk3 and new command protocol
......@@ -205,8 +205,8 @@ class SerialConnection(GObject.Object):
def flush_data(self):
self.assert_connected()
while self.proc_pipe_p.poll() is True:
self.proc_pipe_p.recv()
while self.data_pipe_p.poll() is True:
self.data_pipe_p.recv()
def send_ctrl(self, ctrl):
self.assert_connected()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment