[Scummvm-git-logs] scummvm master -> b10c55abcb608ed02deb9fdf72aa3a3c8b62be39
sev-
sev at scummvm.org
Thu Aug 12 18:35:26 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
b10c55abcb DEVTOOLS: COMPANION: Fix error processing
Commit: b10c55abcb608ed02deb9fdf72aa3a3c8b62be39
https://github.com/scummvm/scummvm/commit/b10c55abcb608ed02deb9fdf72aa3a3c8b62be39
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-08-12T20:34:57+02:00
Commit Message:
DEVTOOLS: COMPANION: Fix error processing
Changed paths:
devtools/dumper-companion.py
diff --git a/devtools/dumper-companion.py b/devtools/dumper-companion.py
index 36a5ea88fa..eb7c3e2ffe 100755
--- a/devtools/dumper-companion.py
+++ b/devtools/dumper-companion.py
@@ -177,7 +177,7 @@ def collect_forks(args: argparse.Namespace) -> None:
try:
finderInfo = xattr.xattr(os.path.join(dirpath, filename))['com.apple.FinderInfo'][0:8]
except (IOError, OSError) as e:
- onError(e)
+ print(f"Error in xattr calling: {e}")
return
(file.type, file.creator) = unpack("4s4s", finderInfo)
More information about the Scummvm-git-logs
mailing list