From a5c98b0a4732fc991571de7cd93b7a43d9726154 Mon Sep 17 00:00:00 2001
From: David Stainton <dstainton415@gmail.com>
Date: Tue, 8 Dec 2015 17:54:36 +0200
Subject: [PATCH] Fix umask again

---
 src/allmydata/frontends/magic_folder.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/allmydata/frontends/magic_folder.py b/src/allmydata/frontends/magic_folder.py
index c22efaea..d19d3282 100644
--- a/src/allmydata/frontends/magic_folder.py
+++ b/src/allmydata/frontends/magic_folder.py
@@ -485,8 +485,8 @@ class WriteFileMixin(object):
         # ensure parent directory exists
         head, tail = os.path.split(abspath_u)
 
+        old_mask = os.umask(self._umask)
         try:
-            old_mask = os.umask(self._umask)
             fileutil.make_dirs(head, (~ self._umask) & 0777)
             fileutil.write(replacement_path_u, file_contents)
         finally:
-- 
2.45.2