From 550ee394e3d5bce0ae710be7f0316c76c20f733c Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 8 Oct 2020 21:50:32 +0100 Subject: [PATCH] setup.py: Convert one f-string to rf-string. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index afd33481..9de2f127 100755 --- a/setup.py +++ b/setup.py @@ -263,7 +263,7 @@ if sys.platform == 'darwin': os.system(f'cd {dist_dir}; ditto -ck --keepParent --sequesterRsrc {appname}.app ../{package_filename}; cd ..') elif sys.platform == 'win32': - os.system(f'"{WIXPATH}\\candle.exe" -out {dist_dir}\\ {appname}.wxs') + os.system(rf'"{WIXPATH}\candle.exe" -out {dist_dir}\ {appname}.wxs') if not exists(f'{dist_dir}/{appname}.wixobj'): raise AssertionError(f'No {dist_dir}/{appname}.wixobj: candle.exe failed?')