From eed0834ccbcbd9924cf4da70e0007938130f4c17 Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 6 Jan 2019 09:53:35 +0100 Subject: [PATCH] makepanda: fix error concatenating platform [skip ci] --- makepanda/makepanda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 40febe3cd0..dc0bded1f8 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -473,7 +473,7 @@ else: target_arch = GetTargetArch() if target_arch == 'amd64': target_arch = 'x86_64' - PLATFORM = '{0}-{1}' % (target, target_arch) + PLATFORM = '{0}-{1}'.format(target, target_arch) print("Platform: %s" % PLATFORM)