# HG changeset patch # User Ludovic Chabant # Date 1518897017 28800 # Node ID ea6cbd6d2af5337ab3640976560b1ae1d7eae0ec # Parent 37735b7e2a3a6210f74fed107c9e4ccf4e8aec4e internal: Disable macOS file-system wrappers. Apparently new versions of macOS don't need this anymore. I'm keeping it around since it might be necessary to re-enable them by detecting the OS version. diff -r 37735b7e2a3a -r ea6cbd6d2af5 piecrust/osutil.py --- a/piecrust/osutil.py Sat Feb 17 11:48:51 2018 -0800 +++ b/piecrust/osutil.py Sat Feb 17 11:50:17 2018 -0800 @@ -42,6 +42,8 @@ glob = _glob -if sys.platform == 'darwin': +_do_wrap_mac_fs = False + +if _do_wrap_mac_fs and sys.platform == 'darwin': _wrap_fs_funcs()