remove debugging

This commit is contained in:
meejah 2023-04-14 13:23:28 -06:00
parent 250efe7d24
commit 76ce54ea53

View File

@ -90,11 +90,9 @@ class _CollectOutputProtocol(ProcessProtocol):
self.done.errback(reason)
def outReceived(self, data):
print("OUT: {!r}".format(data))
self.output.write(data)
def errReceived(self, data):
print("ERR: {!r}".format(data))
if self.capture_stderr:
self.output.write(data)