From 5a281f7290b0e49e0beab4e70a18243c9cd28b98 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 30 Apr 2022 22:15:17 +0200 Subject: [PATCH 1/1] We don't have python f-strings everywhere. --- platform/linux/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/linux/wscript b/platform/linux/wscript index 8518bd6b2..98aff905d 100644 --- a/platform/linux/wscript +++ b/platform/linux/wscript @@ -1,7 +1,7 @@ def desktop(bld, suffix): obj = bld(features='subst') - obj.source = f'dcpomatic{suffix}.desktop.in' - obj.target = 'dcpomatic2{suffix}.desktop' + obj.source = 'dcpomatic' + suffix + '.desktop.in' + obj.target = 'dcpomatic2' + suffix + '.desktop' obj.INSTALL_PREFIX = bld.env.INSTALL_PREFIX obj.VERSION = bld.env.VERSION return obj.target -- 2.30.2