aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <paul.sokolovsky@linaro.org>2013-04-22 15:26:50 +0300
committerPaul Sokolovsky <paul.sokolovsky@linaro.org>2013-04-22 15:26:50 +0300
commit1d4125d021a0c1674a252ea7b033673c627175ad (patch)
treebb93abe8e183b91e5e46c51f61c1d06a98700634
parentd44fd9c6bb5ec608878aa7f615e7068dfe942d1d (diff)
Typo fixes in comments.
-rw-r--r--linaro-ami/remote_executor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/linaro-ami/remote_executor.py b/linaro-ami/remote_executor.py
index cb2e4a6..e6f393f 100644
--- a/linaro-ami/remote_executor.py
+++ b/linaro-ami/remote_executor.py
@@ -39,9 +39,9 @@ class RemoteExecutor:
channel.shutdown_write()
output = ""
while True:
- # 512 below comes from a minimal buffer a canaonical unix pipe
+ # 512 below comes from a minimal buffer a canonical unix pipe
# may have. Of course, that might be not related to paramiko's
- # channel buffer, but good enoug anyway.
+ # channel buffer, but good enough anyway.
data = channel.recv(512)
if not data:
break