[Scummvm-git-logs] scummvm master -> a62ef125468cbabeed806e36e9f97107edfd4925

sev- sev at scummvm.org
Fri Oct 22 11:04:03 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:
a62ef12546 DEVTOOLS: fix filename for mac command


Commit: a62ef125468cbabeed806e36e9f97107edfd4925
    https://github.com/scummvm/scummvm/commit/a62ef125468cbabeed806e36e9f97107edfd4925
Author: Misty De Meo (mistydemeo at gmail.com)
Date: 2021-10-22T13:04:01+02:00

Commit Message:
DEVTOOLS: fix filename for mac command

Changed paths:
    devtools/dumper-companion.py


diff --git a/devtools/dumper-companion.py b/devtools/dumper-companion.py
index c38e3bdbbe..a84c70194f 100755
--- a/devtools/dumper-companion.py
+++ b/devtools/dumper-companion.py
@@ -380,7 +380,7 @@ def collect_forks(args: argparse.Namespace) -> int:
                 file = machfs.File()
 
                 # Set the file times and convert them to Mac epoch
-                info = os.stat(filename)
+                info = os.stat(filepath)
                 file.crdate = 2082844800 + int(info.st_birthtime)
                 file.mddate = 2082844800 + int(info.st_mtime)
 




More information about the Scummvm-git-logs mailing list