summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 2fcb4b143..2db358580 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -6036,7 +6036,7 @@ def movefile(src, dest, newmtime=None, sstat=None, mysettings=None,
# so os.link() calls might fail for some paths, so try them all.
# For atomic replacement, first create the link as a temp file
# and them use os.rename() to replace the destination.
- if hardlink_candidates is not None:
+ if hardlink_candidates:
head, tail = os.path.split(dest)
hardlink_tmp = os.path.join(head, ".%s._portage_merge_.%s" % \
(tail, os.getpid()))