summaryrefslogtreecommitdiffstats
path: root/pym/portage/locks.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-12-14 21:13:54 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2011-12-14 21:13:54 +0100
commitd2afde1fa696d9c47c893f868606cfeb66e6c067 (patch)
tree878bd18e4e90a61d6a13c40656c17cdc8e2055d0 /pym/portage/locks.py
parent85587655d47737be31415d36e8e6a0c9ff0f298f (diff)
downloadportage-d2afde1fa696d9c47c893f868606cfeb66e6c067.tar.gz
portage-d2afde1fa696d9c47c893f868606cfeb66e6c067.tar.bz2
portage-d2afde1fa696d9c47c893f868606cfeb66e6c067.zip
Fix a typo in a comment.v2.2.0_alpha81
Diffstat (limited to 'pym/portage/locks.py')
-rw-r--r--pym/portage/locks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/locks.py b/pym/portage/locks.py
index a645e255f..9fee5ae5d 100644
--- a/pym/portage/locks.py
+++ b/pym/portage/locks.py
@@ -320,7 +320,7 @@ def hardlink_lockfile(lockfilename, max_wait=DeprecationWarning,
myhardlock = hardlock_name(lockfilename)
# myhardlock must not exist prior to our link() call, and we can
- # can safely unlink it since its file name is unique to our PID
+ # safely unlink it since its file name is unique to our PID
try:
os.unlink(myhardlock)
except OSError as e: