1
mirror of https://github.com/rapid7/metasploit-payloads synced 2024-12-08 23:33:07 +01:00

Oops, the default bufsize is 0 anyways.

This commit is contained in:
Joe Vennix 2014-01-05 18:57:56 -06:00
parent 50899d608d
commit 8ab4190fc7

View File

@ -180,7 +180,6 @@ class STDProcessBuffer(threading.Thread):
class STDProcess(subprocess.Popen):
def __init__(self, *args, **kwargs):
kwargs['bufsize'] = 0 # disable buffering on stdout/err
subprocess.Popen.__init__(self, *args, **kwargs)
def start(self):