File tree 3 files changed +15
-7
lines changed
3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
- dfvfs (20230527 -1) unstable; urgency=low
1
+ dfvfs (20230531 -1) unstable; urgency=low
2
2
3
3
* Auto-generated
4
4
5
- -- Log2Timeline maintainers <
[email protected] >
Sat, 27 May 2023
08:06:14 +0200
5
+ -- Log2Timeline maintainers <
[email protected] >
Wed, 31 May 2023
18:17:37 +0200
Original file line number Diff line number Diff line change 6
6
storage media types and file formats.
7
7
"""
8
8
9
- __version__ = '20230527 '
9
+ __version__ = '20230531 '
Original file line number Diff line number Diff line change @@ -108,13 +108,21 @@ def _GetAttributes(self):
108
108
self ._attributes = []
109
109
110
110
if xattr :
111
- for name in xattr .listxattr (self ._location ):
111
+ try :
112
+ attribute_names = list (xattr .listxattr (self ._location ))
113
+ except IOError :
114
+ attribute_names = []
115
+
116
+ for name in attribute_names :
112
117
if isinstance (name , bytes ):
113
118
name = os .fsdecode (name )
114
119
115
- extended_attribute = os_attribute .OSExtendedAttribute (
116
- self ._location , name )
117
- self ._attributes .append (extended_attribute )
120
+ try :
121
+ extended_attribute = os_attribute .OSExtendedAttribute (
122
+ self ._location , name )
123
+ self ._attributes .append (extended_attribute )
124
+ except IOError :
125
+ pass
118
126
119
127
return self ._attributes
120
128
You can’t perform that action at this time.
0 commit comments