summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2010-10-23 18:51:34 +0200
committerZac Medico <zmedico@gentoo.org>2010-10-27 07:34:55 -0700
commitbda8243be8b835e7e22f5695953e6064ac690dbf (patch)
tree09e24910f7ec6ccb4bbebb0eff159dc8dd49307d /pym
parent1a5a16c00aadc608a32944fd5c325da9b20d9643 (diff)
downloadportage-bda8243be8b835e7e22f5695953e6064ac690dbf.tar.gz
portage-bda8243be8b835e7e22f5695953e6064ac690dbf.tar.bz2
portage-bda8243be8b835e7e22f5695953e6064ac690dbf.zip
Fix some typos and improve a message in repoman.
Diffstat (limited to 'pym')
-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()