summaryrefslogtreecommitdiffstats
path: root/pym/portage_manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage_manifest.py')
-rw-r--r--pym/portage_manifest.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/pym/portage_manifest.py b/pym/portage_manifest.py
index 075be9380..4a5428c82 100644
--- a/pym/portage_manifest.py
+++ b/pym/portage_manifest.py
@@ -3,6 +3,7 @@ import os, sets
import portage, portage_exception, portage_versions, portage_const
from portage_checksum import *
from portage_exception import *
+from portage_util import write_atomic
class FileNotInManifestException(PortageException):
pass
@@ -120,10 +121,8 @@ class Manifest(object):
for cpv in cpvlist:
dname = os.path.join(self.pkgdir, "files", "digest-"+portage.catsplit(cpv)[1])
distlist = self._getCpvDistfiles(cpv)
- fd = open(dname, "w")
- fd.write("\n".join(self._createDigestLines1(distlist, self.fhashdict)))
- fd.write("\n")
- fd.close()
+ write_atomic(dname,
+ "\n".join(self._createDigestLines1(distlist, self.fhashdict))+"\n")
rval.append(dname)
return rval