Commit 4dd68c07 by sjahl

setting 0644 permissions on mkstemp file handles. Fixes issue #3857

parent 58477207
......@@ -182,6 +182,7 @@ class SourcesList(object):
if sources:
d, fn = os.path.split(filename)
fd, tmp_path = tempfile.mkstemp(prefix=".%s-" % fn, dir=d)
os.chmod(os.path.join(fd, tmp_path), 0644)
with os.fdopen(fd, 'w') as f:
for n, valid, enabled, source, comment in sources:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment