fixes #1579, thanks Nico

This commit is contained in:
mdipierro
2017-06-20 14:29:47 -05:00
parent 18b755b8da
commit 0674111129
+3
View File
@@ -5786,6 +5786,9 @@ class Expose(object):
@staticmethod
def isprivate(f):
# remove '/private' prefix to deal with symbolic links on OSX
if f.startswith('/private/'):
f = f[8:]
return 'private' in f or f.startswith('.') or f.endswith('~')
@staticmethod