From: Carl Hetherington Date: Sat, 30 Apr 2022 20:15:17 +0000 (+0200) Subject: We don't have python f-strings everywhere. X-Git-Tag: v2.16.10~3 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=5a281f7290b0e49e0beab4e70a18243c9cd28b98 We don't have python f-strings everywhere. --- 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