Fix misleading comment about 10MB limit -> 10 KiB

This commit is contained in:
Adam Kent
2013-01-08 10:57:39 +11:00
parent 48cf35670e
commit a02ad4c7e1
+1 -1
View File
@@ -202,7 +202,7 @@ def run(command, data=None, timeout=None, kill_timeout=None, env=None, cwd=None)
for c in command:
if len(history):
# due to broken pipe problems pass only first 10MB
# due to broken pipe problems pass only first 10 KiB
data = history[-1].std_out[0:10*1024]
cmd = Command(c)