summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/build/verinfo.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/verinfo.py')
-rw-r--r--scripts/build/verinfo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/verinfo.py b/scripts/build/verinfo.py
index 4b05d860406..68038b6251b 100644
--- a/scripts/build/verinfo.py
+++ b/scripts/build/verinfo.py
@@ -23,7 +23,7 @@ def parse_args():
def extract_version(verinfo):
- pattern = re.compile('\s+BARE_BUILD_VERSION\s+"(([^."]+)\.([^."]+))"')
+ pattern = re.compile(r'\s+BARE_BUILD_VERSION\s+"(([^."]+)\.([^."]+))"')
for line in verinfo:
match = pattern.search(line)
if match:
@@ -122,7 +122,7 @@ if __name__ == '__main__':
original=options.executable,
product=('MAME' if options.target == 'mame' else options.target),
rdns=('org.mamedev.' + internal),
- copyright='\u00a9 1997-2023 MAMEdev and contributors',
+ copyright='\u00a9 1997-2025 MAMEdev and contributors',
winfileflags=('0x0L' if verbuild == '0' else 'VS_FF_PRERELEASE'),
resources=(options.resources or 'mame.rc'))