--- movefile.py.orig 2013-03-26 20:22:39.000000000 +0100 +++ movefile.py 2013-03-26 20:22:05.529000000 +0100 @@ -31,6 +31,8 @@ # Python >=3.3 and GNU/Linux def _copyxattr(src, dest): for attr in _os.listxattr(src): + if attr.startswith(b'security.'): + continue try: _os.setxattr(dest, attr, _os.getxattr(src, attr)) raise_exception = False @@ -46,6 +48,8 @@ if xattr is not None: def _copyxattr(src, dest): for attr in xattr.list(src): + if attr.startswith(b'security.'): + continue try: xattr.set(dest, attr, xattr.get(src, attr)) raise_exception = False