aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-10-23 18:51:34 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-10-23 18:51:34 +0200
commit8879a8e85ee2cf69152aa56079ccac8a3a78a5ac (patch)
tree30cb893db2ab04aefaa77ba35c4009c0ee08ec0e /pym/portage/process.py
parentBug #340475: Make repoman check if SVN keywords are enabled in svn:keywords. (diff)
downloadportage-8879a8e85ee2cf69152aa56079ccac8a3a78a5ac.tar.gz
portage-8879a8e85ee2cf69152aa56079ccac8a3a78a5ac.tar.bz2
portage-8879a8e85ee2cf69152aa56079ccac8a3a78a5ac.zip
Fix some typos and improve a message in repoman.
Diffstat (limited to 'pym/portage/process.py')
-rw-r--r--pym/portage/process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/process.py b/pym/portage/process.py
index e4d1d9523..3809ed8a0 100644
--- a/pym/portage/process.py
+++ b/pym/portage/process.py
@@ -209,7 +209,7 @@ def spawn(mycommand, env={}, opt_name=None, fd_pipes=None, returnpid=False,
raise CommandNotFound(mycommand[0])
# If we haven't been told what file descriptors to use
- # default to propogating our stdin, stdout and stderr.
+ # default to propagating our stdin, stdout and stderr.
if fd_pipes is None:
fd_pipes = {
0:sys.stdin.fileno(),
@@ -252,7 +252,7 @@ def spawn(mycommand, env={}, opt_name=None, fd_pipes=None, returnpid=False,
raise
except Exception as e:
# We need to catch _any_ exception so that it doesn't
- # propogate out of this function and cause exiting
+ # propagate out of this function and cause exiting
# with anything other than os._exit()
sys.stderr.write("%s:\n %s\n" % (e, " ".join(mycommand)))
traceback.print_exc()