Created
August 9, 2014 21:25
-
-
Save jborg/e8f8d7b3205eee93f613 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/attic/archive.py b/attic/archive.py | |
index 171da3f..58e5427 100644 | |
--- a/attic/archive.py | |
+++ b/attic/archive.py | |
@@ -351,12 +351,12 @@ class Archive: | |
} | |
if self.numeric_owner: | |
item[b'user'] = item[b'group'] = None | |
- xattrs = xattr.get_all(path, follow_symlinks=False) | |
- if xattrs: | |
- item[b'xattrs'] = StableDict(xattrs) | |
+# xattrs = xattr.get_all(path, follow_symlinks=False) | |
+# if xattrs: | |
+# item[b'xattrs'] = StableDict(xattrs) | |
if has_lchflags and st.st_flags: | |
item[b'bsdflags'] = st.st_flags | |
- acl_get(path, item, st, self.numeric_owner) | |
+# acl_get(path, item, st, self.numeric_owner) | |
return item | |
def process_item(self, path, st): |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment