Skip to content

Instantly share code, notes, and snippets.

@jborg
Created August 9, 2014 21:25
Show Gist options
  • Save jborg/e8f8d7b3205eee93f613 to your computer and use it in GitHub Desktop.
Save jborg/e8f8d7b3205eee93f613 to your computer and use it in GitHub Desktop.
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