Changeset 7e39351 in trunk


Ignore:
Timestamp:
2018-01-11T22:55:40Z (7 years ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
7c04760, f7cfd62
Parents:
537cbc9 (diff), 68783d8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
meejah <meejah@…> (2018-01-11 22:55:40)
git-committer:
GitHub <noreply@…> (2018-01-11 22:55:40)
Message:

Merge pull request #458 from meejah/2881.magic-folder-umask.0

don't set execute bit in default umask

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/frontends/magic_folder.py

    r537cbc9 r7e39351  
    873873        fileutil.make_dirs_with_absolute_mode(local_path_u, initial_path_u, (~ self._umask) & 0777)
    874874        fileutil.write(replacement_path_u, file_contents)
    875         os.chmod(replacement_path_u, (~ self._umask) & 0777)
     875        os.chmod(replacement_path_u, (~ self._umask) & 0666)
    876876
    877877        # FUDGE_SECONDS is used to determine if another process
Note: See TracChangeset for help on using the changeset viewer.