We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4241fc commit 421a1f2Copy full SHA for 421a1f2
src/core/cs3iface.py
@@ -86,7 +86,7 @@ def stat(endpoint, fileref, userid):
86
except (cs3client.exceptions.UnknownException, Exception) as e:
87
log.error(
88
'msg="Invoked stat" endpoint="%s" fileref="%s" exception="%s"' %
89
- (endpoint, fileref, str(e).replace('\n', ' '))
+ (endpoint, fileref, str(e).replace('\n', ' ').replace('"', ''))
90
)
91
raise IOError(f"Stat failed for {fileref}") from e
92
if statInfo.type == cs3spr.RESOURCE_TYPE_CONTAINER:
0 commit comments